1. 07 4月, 2015 1 次提交
  2. 23 2月, 2015 2 次提交
  3. 02 2月, 2015 1 次提交
    • T
      ALSA: pcm: Embed struct device · ef46c7af
      Takashi Iwai 提交于
      Like previous patches, at this time we embed the struct device into
      PCM object.  However, this needs a bit more caution: struct snd_pcm
      doesn't own one device but two, for both playback and capture!  Thus
      not struct snd_pcm but struct snd_pcm_str object contains the device.
      
      Along with this change, pcm->dev field is dropped for avoiding
      confusion.  It was meant to point to a non-standard parent.  But,
      since now we can touch each struct device directly, we can manipulate
      the parent field easily there, too.
      Reviewed-by: NJaroslav Kysela <perex@perex.cz>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      ef46c7af
  4. 07 1月, 2015 1 次提交
  5. 01 11月, 2014 1 次提交
  6. 20 10月, 2014 2 次提交
  7. 25 9月, 2014 1 次提交
  8. 17 9月, 2014 2 次提交
  9. 06 9月, 2014 1 次提交
  10. 17 8月, 2014 3 次提交
  11. 01 8月, 2014 2 次提交
  12. 23 6月, 2014 1 次提交
  13. 22 6月, 2014 1 次提交
  14. 21 6月, 2014 3 次提交
  15. 17 5月, 2014 2 次提交
  16. 09 5月, 2014 7 次提交
  17. 12 2月, 2014 1 次提交
  18. 09 1月, 2014 1 次提交
  19. 24 11月, 2013 1 次提交
  20. 08 11月, 2013 1 次提交
  21. 30 3月, 2013 1 次提交
  22. 27 3月, 2013 1 次提交
  23. 21 8月, 2012 1 次提交
  24. 08 1月, 2012 1 次提交
  25. 16 12月, 2011 1 次提交
    • J
      ASoC: Fix compile error in sound/soc/mid-x86/sst_platform.c · c45471ea
      Joerg Roedel 提交于
      The variable ret_val is used but not declared. This causes
      the following compile error:
      
      sound/soc/mid-x86/sst_platform.c: In function ‘sst_platform_open’:
      sound/soc/mid-x86/sst_platform.c:274:2: error: ‘ret_val’ undeclared (first use in this function)
      sound/soc/mid-x86/sst_platform.c:274:2: note: each undeclared identifier is reported only once for each function it appears in
      make[1]: *** [sound/soc/mid-x86/sst_platform.o] Error 1
      
      Fix this.
      Signed-off-by: NJoerg Roedel <joerg.roedel@amd.com>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      c45471ea