1. 04 3月, 2014 1 次提交
  2. 20 2月, 2014 3 次提交
  3. 21 1月, 2014 1 次提交
  4. 24 12月, 2013 1 次提交
  5. 02 12月, 2013 1 次提交
    • J
      ASoC: omap: n810: Convert to clk_prepare_enable/clk_disable_unprepare · fb28a75a
      Jarkko Nikula 提交于
      N810 audio driver has stopped working at some point. Probably when
      OMAP2 was converted to common clock framework since now call to clk_enable
      dumps the stack trace in drivers/clk/clk.c: __clk_enable() due
      clk->prepare_count is zero.
      
      Fix this by converting clk_enable/_disable calls to those that take care
      of clock prepare/unprepare.
      
      I'm not queueing this to linux-stable since OMAP2 common clock framework
      conversion in commit ed1ebc49 ("ARM: OMAP2: clock: Convert to common clk")
      happened before N810 was really usable in mainline and user base for N810 is
      anyway small. Potential linux-stable candidates are only those after
      commit 3d3a6d18 ("watchdog: introduce retu_wdt driver").
      Signed-off-by: NJarkko Nikula <jarkko.nikula@bitmer.com>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      fb28a75a
  6. 24 11月, 2013 1 次提交
  7. 08 11月, 2013 1 次提交
  8. 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
  9. 04 10月, 2013 1 次提交
  10. 19 9月, 2013 2 次提交
  11. 20 8月, 2013 1 次提交
  12. 15 8月, 2013 1 次提交
  13. 01 8月, 2013 1 次提交
  14. 22 7月, 2013 1 次提交
  15. 21 7月, 2013 1 次提交
  16. 17 7月, 2013 1 次提交
  17. 12 7月, 2013 4 次提交
  18. 04 7月, 2013 1 次提交
  19. 22 6月, 2013 1 次提交
  20. 05 6月, 2013 1 次提交
  21. 30 5月, 2013 1 次提交
  22. 13 5月, 2013 1 次提交
  23. 17 4月, 2013 1 次提交
  24. 04 4月, 2013 1 次提交
  25. 27 3月, 2013 4 次提交
  26. 26 3月, 2013 2 次提交
  27. 20 3月, 2013 3 次提交
  28. 13 3月, 2013 1 次提交