1. 18 May, 2021 1 commit
  2. 12 May, 2021 7 commits
  3. 11 May, 2021 8 commits
  4. 10 May, 2021 3 commits
  5. 05 May, 2021 1 commit
  6. 28 Apr, 2021 4 commits
  7. 26 Apr, 2021 1 commit
  8. 23 Apr, 2021 8 commits
  9. 22 Apr, 2021 1 commit
    • Arnd Bergmann's avatar
      ASoC: tegra: mark runtime-pm functions as __maybe_unused · ccd4cc3e
      Arnd Bergmann authored
      A reorganization of the driver source led to two of them causing
      a compile time warning in some configurations:
      
      tegra/tegra20_spdif.c:36:12: error: 'tegra20_spdif_runtime_resume' defined but not used [-Werror=unused-function]
         36 | static int tegra20_spdif_runtime_resume(struct device *dev)
            |            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
      tegra/tegra20_spdif.c:27:12: error: 'tegra20_spdif_runtime_suspend' defined but not used [-Werror=unused-function]
         27 | static int tegra20_spdif_runtime_suspend(struct device *dev)
            |            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      tegra/tegra30_ahub.c:64:12: error: 'tegra30_ahub_runtime_resume' defined but not used [-Werror=unused-function]
         64 | static int tegra30_ahub_runtime_resume(struct device *dev)
            |            ^~~~~~~~~~~~~~~~~~~~~~~~~~~
      tegra/tegra30_ahub.c:43:12: error: 'tegra30_ahub_runtime_suspend' defined but not used [-Werror=unused-function]
         43 | static int tegra30_ahub_runtime_suspend(struct device *dev)
            |            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
      
      Mark these functions as __maybe_unused to avoid this kind of warning.
      
      Fixes: b5571449 ("ASoC: tegra30: ahub: Remove handing of disabled runtime PM")
      Fixes: c53b396f ("ASoC: tegra20: spdif: Remove handing of disabled runtime PM")
      Fixes: 80ec4a4c ("ASoC: tegra20: i2s: Remove handing of disabled runtime PM")
      Fixes: b5f6f781 ("ASoC: tegra30: i2s: Remove handing of disabled runtime PM")
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Link: https://lore.kernel.org/r/20210422133418.1757893-1-arnd@kernel.orgSigned-off-by: default avatarMark Brown <broonie@kernel.org>
      ccd4cc3e
  10. 21 Apr, 2021 5 commits
  11. 20 Apr, 2021 1 commit
    • Mark Brown's avatar
      Merge series "ASoC: audio-graph: cleanups" from Kuninori Morimoto... · 23b16df6
      Mark Brown authored
      Merge series "ASoC: audio-graph: cleanups" from Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>:
      
      Hi Mark
      
      These patches cleanups audio-graph.
      This is part of prepare for new audio-graph-card2.
      
      Kuninori Morimoto (6):
        ASoC: audio-graph: move audio_graph_card_probe() to simple-card-utils.c
        ASoC: audio-graph: move audio_graph_remove() to simple-card-utils.c
        ASoC: audio-graph: check ports if exists
        ASoC: audio-graph: remove "audio-graph-card," preix support
        ASoC: audio-graph: remove unused "node" from graph_parse_mclk_fs()
        ASoC: audio-graph: remove Platform support
      
       include/sound/graph_card.h               |  4 --
       include/sound/simple_card_utils.h        |  3 ++
       sound/soc/generic/audio-graph-card.c     | 52 ++++--------------------
       sound/soc/generic/simple-card-utils.c    | 25 ++++++++++++
       sound/soc/generic/simple-card.c          |  7 ----
       sound/soc/tegra/tegra_audio_graph_card.c |  4 +-
       6 files changed, 38 insertions(+), 57 deletions(-)
      
      --
      2.25.1
      
      Thank you for your help !!
      
      Best regards
      ---
      Kuninori Morimoto
      23b16df6