An error occurred fetching the project authors.
  1. 15 Jul, 2015 1 commit
  2. 07 Jul, 2015 1 commit
  3. 27 Apr, 2015 1 commit
  4. 15 Jan, 2015 1 commit
  5. 05 Jan, 2015 1 commit
  6. 24 Nov, 2014 1 commit
    • Lars-Peter Clausen's avatar
      ASoC: alc5632: Cleanup bias level transitions · 5c9dc089
      Lars-Peter Clausen authored
      Set the CODEC driver's suspend_bias_off flag rather than manually going to
      SND_SOC_BIAS_OFF in suspend and SND_SOC_BIAS_STANDBY in resume. This makes
      the code a bit shorter and cleaner.
      
      Since the ASoC core now takes care of setting the bias level to
      SND_SOC_BIAS_OFF when removing the CODEC there is no need to do it manually
      anymore either.
      
      The manual transition to SND_SOC_BIAS_STANDBY at the end of CODEC probe()
      can also be removed as the core will automatically do this after the CODEC
      has been probed.
      Signed-off-by: default avatarLars-Peter Clausen <lars@metafoo.de>
      Signed-off-by: default avatarMark Brown <broonie@kernel.org>
      5c9dc089
  7. 04 Apr, 2014 1 commit
  8. 01 Apr, 2014 2 commits
  9. 11 Mar, 2014 1 commit
  10. 23 Feb, 2014 1 commit
  11. 13 Jan, 2014 1 commit
  12. 14 Oct, 2013 1 commit
  13. 09 Dec, 2012 1 commit
  14. 08 May, 2012 2 commits
  15. 04 Apr, 2012 1 commit
  16. 11 Feb, 2012 12 commits
  17. 04 Feb, 2012 1 commit
    • Liam Girdwood's avatar
      ASoC: core: Add support for DAI and machine kcontrols. · 022658be
      Liam Girdwood authored
      Currently ASoC can only add kcontrols using codec and platform component device
      handles. It's also desirable to add kcontrols for DAIs (i.e. McBSP) and for
      SoC card machine drivers too. This allows the kcontrol to have a direct handle to
      the parent ASoC component DAI/SoC Card/Platform/Codec device and hence easily
      get it's private data.
      
      This change makes snd_soc_add_controls() static and wraps it in the folowing
      calls (card and dai are new) :-
      
      snd_soc_add_card_controls()
      snd_soc_add_codec_controls()
      snd_soc_add_dai_controls()
      snd_soc_add_platform_controls()
      
      This patch also does a lot of small mechanical changes in individual codec drivers
      to replace snd_soc_add_controls() with snd_soc_add_codec_controls().
      
      It also updates the McBSP DAI driver to use snd_soc_add_dai_controls().
      
      Finally, it updates the existing machine drivers that register controls to either :-
      
      1) Use snd_soc_add_card_controls() where no direct codec control is required.
      2) Use snd_soc_add_codec_controls() where there is direct codec control.
      
      In the case of 1) above we also update the machine drivers to get the correct
      component data pointers from the kcontrol (rather than getting the machine pointer
      via the codec pointer).
      Signed-off-by: default avatarLiam Girdwood <lrg@ti.com>
      Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
      022658be
  18. 23 Jan, 2012 1 commit
  19. 13 Dec, 2011 1 commit
  20. 02 Dec, 2011 1 commit
  21. 23 Nov, 2011 1 commit
    • Lars-Peter Clausen's avatar
      ASoC: Constify snd_soc_dai_ops structs · 85e7652d
      Lars-Peter Clausen authored
      Commit 1ee46ebd("ASoC: Make the DAI ops constant in the DAI structure")
      introduced the possibility to have constant DAI ops structures, yet this is
      barley used in both existing drivers and also new drivers being submitted,
      although none of them modifies its DAI ops structure. The later is not
      surprising since existing drivers are often used as templates for new drivers.
      So this patch just constifies all existing snd_soc_dai_ops structs to eliminate
      the issue altogether.
      
      The patch was generated with the following coccinelle semantic patch:
      // <smpl>
      @@
      identifier ops;
      @@
      -struct snd_soc_dai_ops ops =
      +const struct snd_soc_dai_ops ops =
      { ... };
      // </smpl>
      Signed-off-by: default avatarLars-Peter Clausen <lars@metafoo.de>
      Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
      85e7652d
  22. 17 Nov, 2011 4 commits
  23. 16 Nov, 2011 2 commits