1. 28 8月, 2015 1 次提交
  2. 17 7月, 2015 1 次提交
  3. 13 7月, 2015 1 次提交
  4. 11 7月, 2015 1 次提交
  5. 09 7月, 2015 1 次提交
  6. 07 7月, 2015 1 次提交
  7. 12 6月, 2015 1 次提交
  8. 22 5月, 2015 1 次提交
  9. 04 5月, 2015 2 次提交
  10. 12 3月, 2015 1 次提交
  11. 05 3月, 2015 1 次提交
  12. 12 2月, 2015 1 次提交
    • G
      ASoC: Fix MAX98357A codec driver dependencies · ffa04757
      Guenter Roeck 提交于
      The max98357a driver depends on GPIOLIB. This may cause the following
      build failure.
      
      sound/soc/codecs/max98357a.c: In function 'max98357a_daiops_trigger':
      sound/soc/codecs/max98357a.c:30:3: error: implicit declaration of function 'gpiod_set_value'
      sound/soc/codecs/max98357a.c: In function 'max98357a_codec_probe':
      sound/soc/codecs/max98357a.c:55:2: error: implicit declaration of function 'devm_gpiod_get'
      sound/soc/codecs/max98357a.c:61:2: error: implicit declaration of function 'gpiod_direction_output'
      
      Seen with mips:allmodconfig as well as various randconfig builds.
      
      Fixes: af5adf12 ("ASoC: max98357a: Add MAX98357A codec driver")
      Cc: Kenneth Westfield <kwestfie@codeaurora.org>
      Signed-off-by: NGuenter Roeck <linux@roeck-us.net>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      ffa04757
  13. 07 2月, 2015 1 次提交
  14. 29 1月, 2015 1 次提交
    • A
      ASoC: rt5677: fix SPI dependency · 4c121129
      Arnd Bergmann 提交于
      The rt5677 codec has gained code that requires SPI to work correctly,
      but there is no provision in Kconfig to prevent the driver from
      being used when SPI is disabled or a loadable module, resulting
      in this build error:
      
      sound/built-in.o: In function `rt5677_spi_write':
      :(.text+0xa7ba0): undefined reference to `spi_sync'
      sound/built-in.o: In function `rt5677_spi_driver_init':
      :(.init.text+0x253c): undefined reference to `spi_register_driver'
      
      ERROR: "spi_sync" [sound/soc/codecs/snd-soc-rt5677-spi.ko] undefined!
      ERROR: "spi_register_driver" [sound/soc/codecs/snd-soc-rt5677-spi.ko] undefined!
      
      This makes the SPI portion of the driver depend on the SPI subsystem,
      and disables the function that uses SPI for firmware download if SPI
      is disabled. The latter may not be the correct solution, but I could
      not come up with a better one.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Fixes: af48f1d0 ("ASoC: rt5677: Support DSP function for VAD application")
      Signed-off-by: NMark Brown <broonie@kernel.org>
      4c121129
  15. 28 1月, 2015 2 次提交
  16. 12 12月, 2014 1 次提交
  17. 19 11月, 2014 1 次提交
  18. 14 11月, 2014 2 次提交
  19. 09 11月, 2014 1 次提交
  20. 03 11月, 2014 1 次提交
  21. 01 11月, 2014 1 次提交
    • R
      ASoC: cs42l51: depends on I2C · e894beb8
      Randy Dunlap 提交于
      Fix build errors when CONFIG_I2C is not enabled by making the
      driver depend on I2C.
      
      ../sound/soc/codecs/cs42l51-i2c.c:55:1: warning: data definition has no type or storage class [enabled by default]
       module_i2c_driver(cs42l51_i2c_driver);
       ^
      ../sound/soc/codecs/cs42l51-i2c.c:55:1: error: type defaults to 'int' in declaration of 'module_i2c_driver' [-Werror=implicit-int]
      ../sound/soc/codecs/cs42l51-i2c.c:55:1: warning: parameter names (without types) in function declaration [enabled by default]
      ../sound/soc/codecs/cs42l51-i2c.c:45:26: warning: 'cs42l51_i2c_driver' defined but not used [-Wunused-variable]
       static struct i2c_driver cs42l51_i2c_driver = {
                                ^
      Signed-off-by: NRandy Dunlap <rdunlap@infradead.org>
      Acked-by: NBrian Austin <brian.austin@cirrus.com>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      e894beb8
  22. 31 10月, 2014 1 次提交
  23. 29 10月, 2014 1 次提交
  24. 23 10月, 2014 1 次提交
  25. 20 10月, 2014 2 次提交
  26. 03 10月, 2014 1 次提交
  27. 30 9月, 2014 1 次提交
  28. 27 9月, 2014 1 次提交
  29. 28 8月, 2014 1 次提交
  30. 17 8月, 2014 3 次提交
  31. 26 7月, 2014 2 次提交
  32. 18 7月, 2014 1 次提交
  33. 05 7月, 2014 1 次提交
    • B
      ASoC: add RT286 CODEC driver · 07cf7cba
      Bard Liao 提交于
      This patch adds Realtek ALC286 codec driver.
      
      ALC286 is a dual mode codec, which can run as HD-A or I2S mode.
      It is controlled by HD-A verb commands via I2C protocol.
      The following is the I/O difference between ALC286 and general I2S codecs.
      1. A HD-A verb command contains three parts, NID, VID, and PID.
         And an I2S command contains only two parts: address and data.
      2. Not only the register address is written, but the read command also
         includes the entire write command.
      3. rt286 uses different registers for read and write the same bits.
      
      We map verb command to regmap structure. However, we read most registers from
      cache to prevent the asymmetry read/write issue in rt286.
      Signed-off-by: NBard Liao <bardliao@realtek.com>
      Signed-off-by: NGustaw Lewandowski <gustaw.lewandowski@intel.com>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      07cf7cba