An error occurred fetching the project authors.
  1. 10 Aug, 2017 1 commit
  2. 09 Aug, 2017 1 commit
  3. 28 Jul, 2017 1 commit
  4. 24 Jul, 2017 1 commit
  5. 30 Jun, 2017 1 commit
  6. 21 Jun, 2017 1 commit
  7. 15 Jun, 2017 2 commits
  8. 14 Jun, 2017 1 commit
  9. 13 Jun, 2017 2 commits
  10. 07 Jun, 2017 2 commits
  11. 19 May, 2017 3 commits
  12. 17 May, 2017 2 commits
  13. 19 Apr, 2017 1 commit
  14. 06 Apr, 2017 1 commit
  15. 29 Mar, 2017 1 commit
  16. 24 Mar, 2017 1 commit
  17. 21 Feb, 2017 1 commit
  18. 23 Jan, 2017 1 commit
  19. 20 Jan, 2017 1 commit
  20. 15 Dec, 2016 1 commit
  21. 07 Dec, 2016 1 commit
  22. 05 Dec, 2016 1 commit
  23. 22 Nov, 2016 1 commit
  24. 25 Oct, 2016 1 commit
    • Kuninori Morimoto's avatar
      ASoC: rsnd: add nolock_start/stop callback · 10a9cca1
      Kuninori Morimoto authored
      Current Renesas Sound driver requests DMA channel when .probe timing,
      and release it when .remove timing. And use DMA on .start/.stop
      But, Audio DMAC power ON was handled when request timing (= .probe),
      and power OFF was when release timing (= .remove).
      This means Audio DMAC power is always ON during driver was enabled.
      To fixup this issue, it should request/release DMA channel on each
      playback/recorde timing.
      But, DMA channel request/release function uses mutex lock inside.
      This means it will breaks current spinlock's interrupt protect.
      To solve this issue, DMA channel request/release function needs to
      be called from non-spinlock area. This patch adds its callback.
      Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
      Signed-off-by: default avatarMark Brown <broonie@kernel.org>
      10a9cca1
  25. 24 Oct, 2016 4 commits
  26. 29 Sep, 2016 1 commit
  27. 11 Aug, 2016 1 commit
    • Baoyou Xie's avatar
      ASoC: fix W=1 build warnings · 1d9d0c65
      Baoyou Xie authored
      We get 1 warning about global functions without a declaration
      in the ASoC sub-system when building with W=1:
      
      sound/soc/sh/rcar/core.c:113:6: warning: no previous prototype for 'rsnd_mod_make_sure' [-Wmissing-prototypes]
       void rsnd_mod_make_sure(struct rsnd_mod *mod, enum rsnd_mod_type type)
      
      In this case, the function 'rsnd_mod_make_sure' is declared in rsnd.h file,
      but it only valid if the macro DEBUG is claimed.
      
      so the implementation of function 'rsnd_mod_make_sure' need be
      held by macro DEBUG.
      Signed-off-by: default avatarBaoyou Xie <baoyou.xie@linaro.org>
      Signed-off-by: default avatarMark Brown <broonie@kernel.org>
      1d9d0c65
  28. 05 Mar, 2016 2 commits
  29. 02 Mar, 2016 1 commit
  30. 19 Feb, 2016 1 commit