1. 29 4月, 2016 1 次提交
  2. 05 3月, 2016 1 次提交
  3. 18 2月, 2016 1 次提交
  4. 16 2月, 2016 1 次提交
  5. 04 2月, 2016 1 次提交
    • O
      ASoC: rt5514: add rt5514 codec driver · 4a6180ea
      Oder Chiou 提交于
      This is the initial codec driver for rt5514. The codec includes a low power
      DSP for voice wake up. The register address is incremental by 4 in the DSP
      memory map. In order to recover the codec settings in the codec mode and
      manipulate the DSP mode for voice wake up, we use the multi-level register
      map. One is for ALSA API in codec mode that can be recovered by cache
      before recording. Another is for DSP related settings that can be accessed
      with 32bit address of the DSP in the application of voice wake up.
      Signed-off-by: NOder Chiou <oder_chiou@realtek.com>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      4a6180ea
  6. 29 1月, 2016 2 次提交
  7. 28 1月, 2016 1 次提交
  8. 27 1月, 2016 1 次提交
  9. 10 1月, 2016 1 次提交
  10. 23 12月, 2015 1 次提交
  11. 19 12月, 2015 1 次提交
  12. 18 12月, 2015 1 次提交
  13. 13 12月, 2015 1 次提交
  14. 30 11月, 2015 1 次提交
  15. 23 11月, 2015 2 次提交
  16. 22 11月, 2015 1 次提交
  17. 21 11月, 2015 1 次提交
  18. 18 11月, 2015 1 次提交
  19. 16 11月, 2015 2 次提交
  20. 07 10月, 2015 1 次提交
  21. 03 10月, 2015 2 次提交
  22. 20 9月, 2015 1 次提交
  23. 17 9月, 2015 1 次提交
  24. 28 8月, 2015 1 次提交
  25. 17 7月, 2015 1 次提交
  26. 13 7月, 2015 1 次提交
  27. 11 7月, 2015 1 次提交
  28. 09 7月, 2015 1 次提交
  29. 07 7月, 2015 1 次提交
  30. 12 6月, 2015 1 次提交
  31. 22 5月, 2015 1 次提交
  32. 04 5月, 2015 2 次提交
  33. 12 3月, 2015 1 次提交
  34. 05 3月, 2015 1 次提交
  35. 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