summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2013-08-22 14:28:27 +0100
committerMark Brown <broonie@linaro.org>2013-08-22 14:28:27 +0100
commit3e4ea1f98980568334a98d93302a09a7ff53271e (patch)
tree2ee36cc2a2e50291d1b20ced5d3c5bfcf95b1972 /sound
parente7dfdc1f1f976d123dc1d4a6331b737383d4ef3a (diff)
parentdcf1439a493f75336f7e9d272d01b04bc1c4ca8e (diff)
Merge remote-tracking branch 'asoc/topic/ak5386' into asoc-next
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/ak5386.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/sound/soc/codecs/ak5386.c b/sound/soc/codecs/ak5386.c
index 1f303983ae02..72e953b2cb41 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 ak5386_dapm_widgets[] = {
+SND_SOC_DAPM_INPUT("AINL"),
+SND_SOC_DAPM_INPUT("AINR"),
+};
+
+static const struct snd_soc_dapm_route ak5386_dapm_routes[] = {
+ { "Capture", NULL, "AINL" },
+ { "Capture", NULL, "AINR" },
+};
+
+static struct snd_soc_codec_driver soc_codec_ak5386 = {
+ .dapm_widgets = ak5386_dapm_widgets,
+ .num_dapm_widgets = ARRAY_SIZE(ak5386_dapm_widgets),
+ .dapm_routes = ak5386_dapm_routes,
+ .num_dapm_routes = ARRAY_SIZE(ak5386_dapm_routes),
+};
static int ak5386_set_dai_fmt(struct snd_soc_dai *codec_dai,
unsigned int format)