1. 19 2月, 2019 1 次提交
  2. 18 6月, 2018 1 次提交
  3. 12 2月, 2018 1 次提交
  4. 04 10月, 2017 1 次提交
  5. 18 8月, 2017 1 次提交
  6. 15 8月, 2017 3 次提交
  7. 17 7月, 2017 1 次提交
  8. 17 5月, 2017 1 次提交
  9. 21 11月, 2015 1 次提交
    • A
      ASoC: sh: fix fsi build warnings for 64 bit · e6e969f1
      Arnd Bergmann 提交于
      As this driver can now be compiled for ARM64, we get a new warning
      as a result of passing a DMA filter data pointer through an 'int':
      
      sound/soc/sh/fsi.c: In function 'fsi_dma_probe':
      sound/soc/sh/fsi.c:1372:24: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
           shdma_chan_filter, (void *)io->dma_id,
      
      We already know that we only need the legacy filter function on
      arch/sh, so we can hide the legacy DMA interface function
      behind an #ifdef. This has the other advantage of no longer
      depending on the shdma_chan_filter function to be visible.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      e6e969f1
  10. 16 7月, 2015 1 次提交
  11. 01 4月, 2015 2 次提交
  12. 31 3月, 2015 1 次提交
  13. 23 3月, 2015 1 次提交
  14. 23 2月, 2015 2 次提交
  15. 06 1月, 2015 2 次提交
  16. 04 12月, 2014 1 次提交
  17. 29 10月, 2014 1 次提交
  18. 17 8月, 2014 1 次提交
    • L
      ASoC: sh: Fix dma direction type · 6c7d1dfc
      Lars-Peter Clausen 提交于
      dmaengine_prep_slave_single() expects a enum dma_transfer_direction and not a
      enum dma_data_direction. Since the integer representations of both DMA_TO_DEVICE
      and DMA_MEM_TO_DEV aswell as DMA_FROM_DEVICE and DMA_DEV_TO_MEM have the same
      value the code worked fine even though it was using the wrong type.
      
      Fixes the following warnings from sparse:
      	sound/soc/sh/fsi.c:1307:42: warning: mixing different enum types
      	sound/soc/sh/fsi.c:1307:42:     int enum dma_data_direction  versus
      	sound/soc/sh/fsi.c:1307:42:     int enum dma_transfer_direction
      Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      6c7d1dfc
  19. 28 6月, 2014 3 次提交
  20. 22 6月, 2014 1 次提交
    • L
      ASoC: sh/fsi: Make one-bit bitfields unsigned · 9f98cd69
      Lars-Peter Clausen 提交于
      One-bit signed bitfields have two possible values: 0 and -1. This sometimes
      leads to unexpected results (e.g. foo.bar = 1; foo.bar == 1 => false) which is
      why it is recommended to make one-bit bitfields unsigned.
      
      This fixes the following sparse warnings:
      	sound/soc/sh/fsi.c:267:25: error: dubious one-bit signed bitfield
      	sound/soc/sh/fsi.c:268:22: error: dubious one-bit signed bitfield
      	sound/soc/sh/fsi.c:269:20: error: dubious one-bit signed bitfield
      	sound/soc/sh/fsi.c:270:28: error: dubious one-bit signed bitfield
      	sound/soc/sh/fsi.c:271:26: error: dubious one-bit signed bitfield
      	sound/soc/sh/fsi.c:272:25: error: dubious one-bit signed bitfield
      Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
      Acked-by: NKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
      Signed-off-by: NMark Brown <broonie@linaro.org>
      9f98cd69
  21. 15 3月, 2014 1 次提交
  22. 09 1月, 2014 1 次提交
  23. 11 12月, 2013 1 次提交
  24. 26 8月, 2013 1 次提交
  25. 28 5月, 2013 1 次提交
    • K
      ASoC: fsi: fixup sparse errors · c375b2d7
      Kuninori Morimoto 提交于
      This patch fixup below sparse errors
      
      ${LINUX}/sound/soc/sh/fsi.c:1459:9: \
      	error: incompatible types in conditional expression (different base types)
      ${LINUX}/sound/soc/sh/fsi.c:1634:25: \
      	error: incompatible types in conditional expression (different base types)
      ${LINUX}/sound/soc/sh/fsi.c:1639:17: \
      	error: incompatible types in conditional expression (different base types)
      ${LINUX}/sound/soc/sh/fsi.c:2093:9: \
      	error: incompatible types in conditional expression (different base types)
      ${LINUX}/sound/soc/sh/fsi.c:2105:9: \
      	error: incompatible types in conditional expression (different base types)
      Signed-off-by: NKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
      Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
      c375b2d7
  26. 15 3月, 2013 1 次提交
  27. 13 3月, 2013 1 次提交
  28. 16 1月, 2013 1 次提交
  29. 14 1月, 2013 1 次提交
  30. 03 1月, 2013 1 次提交
  31. 24 12月, 2012 2 次提交
  32. 20 11月, 2012 1 次提交