1. 16 6月, 2017 2 次提交
  2. 14 6月, 2017 2 次提交
    • K
      ASoC: simple_card_utils: add EXPORT_SYMBOL_GPL() for asoc_simple_card_clk_xxx() · 63a5f592
      Kuninori Morimoto 提交于
      commit 891caea4 ("ASoC: simple_card_utils:
      add asoc_simple_card_clk_xxx()") added new asoc_simple_card_clk_xxx(),
      but, it didn't have EXPORT_SYMBOL_GPL().
      This patch adds it. Otherwise, we will get below error
      
      ERROR: "asoc_simple_card_clk_enable" [sound/soc/generic/snd-soc-simple-scu-card.ko] undefined!
      ERROR: "asoc_simple_card_clk_disable" [sound/soc/generic/snd-soc-simple-scu-card.ko] undefined!
      ERROR: "asoc_simple_card_clk_enable" [sound/soc/generic/snd-soc-simple-card.ko] undefined!
      ERROR: "asoc_simple_card_clk_disable" [sound/soc/generic/snd-soc-simple-card.ko] undefined!
      ERROR: "asoc_simple_card_clk_enable" [sound/soc/generic/snd-soc-audio-graph-scu-card.ko] undefined!
      ERROR: "asoc_simple_card_clk_disable" [sound/soc/generic/snd-soc-audio-graph-scu-card.ko] undefined!
      ERROR: "asoc_simple_card_clk_enable" [sound/soc/generic/snd-soc-audio-graph-card.ko] undefined!
      ERROR: "asoc_simple_card_clk_disable" [sound/soc/generic/snd-soc-audio-graph-card.ko] undefined!
      Signed-off-by: NKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      63a5f592
    • K
      ASoC: simple_card_utils: add asoc_simple_card_clk_xxx() · 891caea4
      Kuninori Morimoto 提交于
      Current simple-card-utils sets asoc_simple_dai::clk via
      asoc_simple_card_parse_clk().
      Current simple card drivers are using it directly for
      clk_enable/disable.
      Encapsulation is one of simple card util's purpose.
      Let's encapsulate it.
      Signed-off-by: NKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      891caea4
  3. 07 6月, 2017 4 次提交
  4. 26 5月, 2017 1 次提交
  5. 25 5月, 2017 1 次提交
  6. 17 5月, 2017 2 次提交
  7. 25 3月, 2017 1 次提交
  8. 24 1月, 2017 1 次提交
  9. 05 12月, 2016 1 次提交
  10. 29 10月, 2016 1 次提交
  11. 11 8月, 2016 2 次提交
  12. 09 8月, 2016 2 次提交
  13. 08 8月, 2016 2 次提交
  14. 04 8月, 2016 1 次提交
  15. 16 7月, 2016 2 次提交
  16. 30 6月, 2016 1 次提交
    • K
      ASoC: add new simple-card-utils.c · abd3147e
      Kuninori Morimoto 提交于
      Current ALSA SoC has simple-card driver which is supporting both
      platform and DT probe.
      Now, some sound cards driver are created based on simple-card.
      They have similar feature or function, but implemented separately
      on each drivers. This is a waste of code.
      OTOH, merging these driver into same driver is highly risk,
      because it will be very difficult to keep compatibility.
      More over, ALSA SoC want to have graph base of DT feature in the
      future. Maybe it want to use simple-card like feature / function.
      Because of these background, this patch creates simple-card
      helper utils, and provides common function to each drivers.
      1st is asoc_simple_card_parse_daifmt()
      Signed-off-by: NKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
      Signed-off-by: NMark Brown <broonie@kernel.org>
      abd3147e