[alsa-devel] [PATCH] ASoC: ak5386: Add DAPM support
From: Mark Brown broonie@linaro.org
This makes it possible to hook the device into a more complex board and ensures it will continue to work with non-DAPM support removed from the core.
Signed-off-by: Mark Brown broonie@linaro.org --- sound/soc/codecs/ak5386.c | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-)
diff --git a/sound/soc/codecs/ak5386.c b/sound/soc/codecs/ak5386.c index 1f30398..fb01f35 100644 --- a/sound/soc/codecs/ak5386.c +++ b/sound/soc/codecs/ak5386.c @@ -22,7 +22,22 @@ struct ak5386_priv { int reset_gpio; };
-static struct snd_soc_codec_driver soc_codec_ak5386; +static const struct snd_soc_dapm_widget ak4554_dapm_widgets[] = { +SND_SOC_DAPM_INPUT("AINL"), +SND_SOC_DAPM_INPUT("AINR"), +}; + +static const struct snd_soc_dapm_route ak4554_dapm_routes[] = { + { "Capture", NULL, "AINL" }, + { "Capture", NULL, "AINR" }, +}; + +static struct snd_soc_codec_driver soc_codec_ak5386 = { + .dapm_widgets = ak4554_dapm_widgets, + .num_dapm_widgets = ARRAY_SIZE(ak4554_dapm_widgets), + .dapm_routes = ak4554_dapm_routes, + .num_dapm_routes = ARRAY_SIZE(ak4554_dapm_routes), +};
static int ak5386_set_dai_fmt(struct snd_soc_dai *codec_dai, unsigned int format)
On 11.08.2013 13:35, Mark Brown wrote:
+static struct snd_soc_codec_driver soc_codec_ak5386 = {
- .dapm_widgets = ak4554_dapm_widgets,
- .num_dapm_widgets = ARRAY_SIZE(ak4554_dapm_widgets),
- .dapm_routes = ak4554_dapm_routes,
- .num_dapm_routes = ARRAY_SIZE(ak4554_dapm_routes),
Any particular reason for the name mismatches (ak4554 vs ak5386)?
Daniel
On Sun, Aug 11, 2013 at 01:38:23PM +0200, Daniel Mack wrote:
On 11.08.2013 13:35, Mark Brown wrote:
+static struct snd_soc_codec_driver soc_codec_ak5386 = {
- .dapm_widgets = ak4554_dapm_widgets,
- .num_dapm_widgets = ARRAY_SIZE(ak4554_dapm_widgets),
- .dapm_routes = ak4554_dapm_routes,
- .num_dapm_routes = ARRAY_SIZE(ak4554_dapm_routes),
Any particular reason for the name mismatches (ak4554 vs ak5386)?
I forgot to do the sed after I did the cut'n'paste.
participants (2)
-
Daniel Mack
-
Mark Brown