1. 13 12月, 2013 1 次提交
  2. 31 10月, 2013 1 次提交
    • R
      DMA-API: sound: fix dma mask handling in a lot of drivers · c9bd5e69
      Russell King 提交于
      This code sequence is unsafe in modules:
      
      static u64 mask = DMA_BIT_MASK(something);
      ...
      	if (!dev->dma_mask)
      		dev->dma_mask = &mask;
      
      as if a module is reloaded, the mask will be pointing at the original
      module's mask address, and this can lead to oopses.  Moreover, they
      all follow this with:
      
      	if (!dev->coherent_dma_mask)
      		dev->coherent_dma_mask = mask;
      
      where 'mask' is the same value as the statically defined mask, and this
      bypasses the architecture's check on whether the DMA mask is possible.
      
      Fix these issues by using the new dma_coerce_coherent_and_mask()
      function.
      Acked-by: NMark Brown <broonie@linaro.org>
      Acked-by: NTakashi Iwai <tiwai@suse.de>
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      c9bd5e69
  3. 17 10月, 2013 1 次提交
  4. 14 10月, 2013 2 次提交
  5. 26 9月, 2013 1 次提交
  6. 04 9月, 2013 1 次提交
  7. 07 8月, 2013 1 次提交
  8. 20 7月, 2013 1 次提交
  9. 16 7月, 2013 1 次提交
  10. 15 7月, 2013 4 次提交
  11. 13 5月, 2013 1 次提交
  12. 17 4月, 2013 1 次提交
  13. 04 4月, 2013 1 次提交
  14. 27 3月, 2013 1 次提交
  15. 26 3月, 2013 2 次提交
  16. 04 3月, 2013 1 次提交
  17. 05 2月, 2013 4 次提交
  18. 24 12月, 2012 1 次提交
  19. 09 12月, 2012 1 次提交
  20. 02 12月, 2012 2 次提交
  21. 16 11月, 2012 3 次提交
  22. 06 11月, 2012 1 次提交
  23. 02 2月, 2012 2 次提交
  24. 20 1月, 2012 1 次提交
  25. 11 1月, 2012 1 次提交
  26. 08 1月, 2012 1 次提交
  27. 06 1月, 2012 1 次提交
    • A
      ASoC: Fix build dependency for SND_ATMEL_SOC_SSC · 739be96a
      Axel Lin 提交于
      Make SND_ATMEL_SOC_SSC select ATMEL_SSC to fix below build errors:
      
        LD      .tmp_vmlinux1
      sound/built-in.o: In function `atmel_ssc_remove':
      sound/soc/atmel/atmel_ssc_dai.c:713: undefined reference to `ssc_free'
      sound/built-in.o: In function `atmel_ssc_probe':
      sound/soc/atmel/atmel_ssc_dai.c:700: undefined reference to `ssc_request'
      sound/built-in.o: In function `atmel_ssc_set_audio':
      sound/soc/atmel/atmel_ssc_dai.c:845: undefined reference to `ssc_request'
      sound/soc/atmel/atmel_ssc_dai.c:851: undefined reference to `ssc_free'
      make: *** [.tmp_vmlinux1] Error 1
      Signed-off-by: NAxel Lin <axel.lin@gmail.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      739be96a
  28. 23 12月, 2011 1 次提交