mirror of https://gitee.com/openkylin/linux.git
ASoC: mediatek: mt8183-da7219: fix DAPM paths for rt1015
RT1015's output widget name is "SPO" instead of "Speaker". Fixes it to use the correct names. Signed-off-by: Tzung-Bi Shih <tzungbi@google.com> Link: https://lore.kernel.org/r/20201019044724.1601476-1-tzungbi@google.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
3d53c6df42
commit
eb5a558705
|
@ -630,15 +630,34 @@ static struct snd_soc_codec_conf mt8183_da7219_rt1015_codec_conf[] = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct snd_kcontrol_new mt8183_da7219_rt1015_snd_controls[] = {
|
||||||
|
SOC_DAPM_PIN_SWITCH("Left Spk"),
|
||||||
|
SOC_DAPM_PIN_SWITCH("Right Spk"),
|
||||||
|
};
|
||||||
|
|
||||||
|
static const
|
||||||
|
struct snd_soc_dapm_widget mt8183_da7219_rt1015_dapm_widgets[] = {
|
||||||
|
SND_SOC_DAPM_SPK("Left Spk", NULL),
|
||||||
|
SND_SOC_DAPM_SPK("Right Spk", NULL),
|
||||||
|
SND_SOC_DAPM_PINCTRL("TDM_OUT_PINCTRL",
|
||||||
|
"aud_tdm_out_on", "aud_tdm_out_off"),
|
||||||
|
};
|
||||||
|
|
||||||
|
static const struct snd_soc_dapm_route mt8183_da7219_rt1015_dapm_routes[] = {
|
||||||
|
{"Left Spk", NULL, "Left SPO"},
|
||||||
|
{"Right Spk", NULL, "Right SPO"},
|
||||||
|
{"I2S Playback", NULL, "TDM_OUT_PINCTRL"},
|
||||||
|
};
|
||||||
|
|
||||||
static struct snd_soc_card mt8183_da7219_rt1015_card = {
|
static struct snd_soc_card mt8183_da7219_rt1015_card = {
|
||||||
.name = "mt8183_da7219_rt1015",
|
.name = "mt8183_da7219_rt1015",
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
.controls = mt8183_da7219_max98357_snd_controls,
|
.controls = mt8183_da7219_rt1015_snd_controls,
|
||||||
.num_controls = ARRAY_SIZE(mt8183_da7219_max98357_snd_controls),
|
.num_controls = ARRAY_SIZE(mt8183_da7219_rt1015_snd_controls),
|
||||||
.dapm_widgets = mt8183_da7219_max98357_dapm_widgets,
|
.dapm_widgets = mt8183_da7219_rt1015_dapm_widgets,
|
||||||
.num_dapm_widgets = ARRAY_SIZE(mt8183_da7219_max98357_dapm_widgets),
|
.num_dapm_widgets = ARRAY_SIZE(mt8183_da7219_rt1015_dapm_widgets),
|
||||||
.dapm_routes = mt8183_da7219_max98357_dapm_routes,
|
.dapm_routes = mt8183_da7219_rt1015_dapm_routes,
|
||||||
.num_dapm_routes = ARRAY_SIZE(mt8183_da7219_max98357_dapm_routes),
|
.num_dapm_routes = ARRAY_SIZE(mt8183_da7219_rt1015_dapm_routes),
|
||||||
.dai_link = mt8183_da7219_dai_links,
|
.dai_link = mt8183_da7219_dai_links,
|
||||||
.num_links = ARRAY_SIZE(mt8183_da7219_dai_links),
|
.num_links = ARRAY_SIZE(mt8183_da7219_dai_links),
|
||||||
.aux_dev = &mt8183_da7219_max98357_headset_dev,
|
.aux_dev = &mt8183_da7219_max98357_headset_dev,
|
||||||
|
|
Loading…
Reference in New Issue