1. 12 12月, 2014 1 次提交
  2. 19 11月, 2014 1 次提交
  3. 14 11月, 2014 2 次提交
  4. 09 11月, 2014 1 次提交
  5. 03 11月, 2014 1 次提交
  6. 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
  7. 31 10月, 2014 1 次提交
  8. 29 10月, 2014 1 次提交
  9. 23 10月, 2014 1 次提交
  10. 20 10月, 2014 2 次提交
  11. 03 10月, 2014 1 次提交
  12. 30 9月, 2014 1 次提交
  13. 27 9月, 2014 1 次提交
  14. 28 8月, 2014 1 次提交
  15. 17 8月, 2014 3 次提交
  16. 26 7月, 2014 2 次提交
  17. 18 7月, 2014 1 次提交
  18. 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
  19. 03 7月, 2014 1 次提交
  20. 24 6月, 2014 1 次提交
  21. 16 6月, 2014 1 次提交
  22. 10 6月, 2014 1 次提交
    • L
      ASoC: sigmadsp: Split regmap and I2C support into separate modules · 2488708f
      Lars-Peter Clausen 提交于
      When the SigmaDSP module is built-in, but the I2C core is build as a module
      we'll get a undefined reference:
      
      	sound/built-in.o: In function `sigma_action_write_i2c':
      		:(.text+0x5d8d4): undefined reference to `i2c_master_send'
      
      This can happen if a audio driver that is using the regmap SigmaDSP interface is
      built into the kernel, but core I2C support is build as a module. To fix this
      split the SigmaDSP module into three modules, one module providing the core
      infrastructure and two small modules implementing the regmap and I2C interfaces.
      This allows e.g. the core infrastructure and regmap support to be built into the
      kernel while I2C support can still be build as a module.
      
      Fixes: dab464b6 ("ASoC: Add ADAU1361/ADAU1761 audio CODEC support")
      Reported-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      2488708f
  23. 06 6月, 2014 1 次提交
    • L
      ASoC: sigmadsp: Split regmap and I2C support into separate modules · 6b10998d
      Lars-Peter Clausen 提交于
      When the SigmaDSP module is built-in, but the I2C core is build as a module
      we'll get a undefined reference:
      
      	sound/built-in.o: In function `sigma_action_write_i2c':
      		:(.text+0x5d8d4): undefined reference to `i2c_master_send'
      
      This can happen if a audio driver that is using the regmap SigmaDSP interface is
      built into the kernel, but core I2C support is build as a module. To fix this
      split the SigmaDSP module into three modules, one module providing the core
      infrastructure and two small modules implementing the regmap and I2C interfaces.
      This allows e.g. the core infrastructure and regmap support to be built into the
      kernel while I2C support can still be build as a module.
      
      Fixes: dab464b6 ("ASoC: Add ADAU1361/ADAU1761 audio CODEC support")
      Reported-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      6b10998d
  24. 02 6月, 2014 2 次提交
  25. 28 5月, 2014 3 次提交
  26. 26 5月, 2014 1 次提交
  27. 21 5月, 2014 1 次提交
  28. 06 5月, 2014 1 次提交
  29. 04 5月, 2014 1 次提交
  30. 01 5月, 2014 1 次提交
    • A
      ASoC: CS42L51 and WM8962 codecs depend on INPUT · a2915d4f
      Arnd Bergmann 提交于
      Building ARM randconfig got into a situation where CONFIG_INPUT
      is turned off and SND_SOC_ALL_CODECS is turned on, which failed
      for two codecs trying to use the input subsystem. Some other
      drivers also select one of these codecs and consequently need an
      explicit dependency added.
      
      Appending to the dependency list seems the easiest way out,
      since this is not a practical limitation. If anyone really
      needs to build these codecs for a kernel with no input support,
      a more sophisticated solution can be implemented.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NXia Kaixu <kaixu.xia@linaro.org>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      a2915d4f
  31. 19 4月, 2014 1 次提交
  32. 16 4月, 2014 1 次提交