Commit 3e4ea1f9 authored by Mark Brown's avatar Mark Brown

Merge remote-tracking branch 'asoc/topic/ak5386' into asoc-next

parents e7dfdc1f dcf1439a
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment