1. 15 1月, 2014 1 次提交
  2. 19 12月, 2013 1 次提交
  3. 03 12月, 2013 2 次提交
  4. 02 12月, 2013 1 次提交
  5. 24 11月, 2013 1 次提交
  6. 03 10月, 2013 1 次提交
  7. 26 9月, 2013 1 次提交
  8. 24 9月, 2013 1 次提交
    • F
      ASoC: fsl: fsl_ssi: Fix simultaneous capture and playback · 64d2307c
      Fabio Estevam 提交于
      When doing simultaneous capture and playback on a mx6 board we get the following
      error:
      
      $ arecord -f cd  | aplay -f cd
      imx-sgtl5000 sound.13: set sample size in capture stream first
      fsl-ssi-dai 2028000.ssi: ASoC: can't open interface 2028000.ssi: -11
      ALSA lib pcm_dmix.c:1018:(snd_pcm_dmix_
      open) unable to open slave
      aplay: main:660: audio open error: Device or resource busy
      Recording WAVE 'stdin' : Signed 16 bit Little Endian, Rate 44100 Hz, Stereo
      
      The 'arecord -f cd  | aplay -f cd' always trigger cause the
      'if (!first_runtime->sample_bits)' block to be true which returns an error.
      
      Adjust the logic inside fsl_ssi_startup(), so that we do not always hit the
      error when playing  'arecord | aplay' line for the first time.
      Reported-by: NChris Clepper <cgclepper@gmail.com>
      Suggested-by: NNicolin Chen <b42378@freescale.com>
      Signed-off-by: NFabio Estevam <fabio.estevam@freescale.com>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      64d2307c
  9. 17 9月, 2013 2 次提交
  10. 27 8月, 2013 1 次提交
  11. 22 8月, 2013 4 次提交
  12. 20 8月, 2013 1 次提交
  13. 07 8月, 2013 2 次提交
  14. 26 7月, 2013 1 次提交
  15. 22 7月, 2013 1 次提交
  16. 19 7月, 2013 1 次提交
  17. 17 7月, 2013 2 次提交
  18. 15 7月, 2013 1 次提交
  19. 15 5月, 2013 1 次提交
  20. 17 4月, 2013 1 次提交
  21. 05 4月, 2013 1 次提交
  22. 27 3月, 2013 1 次提交
  23. 26 3月, 2013 1 次提交
  24. 09 12月, 2012 1 次提交
  25. 05 6月, 2012 1 次提交
  26. 04 6月, 2012 1 次提交
  27. 01 4月, 2012 4 次提交
  28. 09 3月, 2012 1 次提交
  29. 29 11月, 2011 1 次提交
  30. 23 11月, 2011 1 次提交
    • L
      ASoC: Constify snd_soc_dai_ops structs · 85e7652d
      Lars-Peter Clausen 提交于
      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: NLars-Peter Clausen <lars@metafoo.de>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      85e7652d