ASoC: Intel: avs-rt286: remove redundant dapm routes
commit cca1ac1f09
upstream.
Two routes "AIF1 Playback<-sspX Tx" and "sspX Rx<-AIF1 Capture" are
created by snd_soc_dapm_connect_dai_link_widgets() automatically.
Remove the duplicate routes.
Signed-off-by: Brent Lu <brent.lu@intel.com>
Link: https://lore.kernel.org/r/20230612110958.592674-10-brent.lu@intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
23d31de015
commit
733a9209e1
|
@ -158,38 +158,6 @@ static int avs_create_dai_link(struct device *dev, const char *platform_name, in
|
|||
return 0;
|
||||
}
|
||||
|
||||
static int avs_create_dapm_routes(struct device *dev, int ssp_port,
|
||||
struct snd_soc_dapm_route **routes, int *num_routes)
|
||||
{
|
||||
struct snd_soc_dapm_route *dr;
|
||||
const int num_base = ARRAY_SIZE(card_base_routes);
|
||||
const int num_dr = num_base + 2;
|
||||
int idx;
|
||||
|
||||
dr = devm_kcalloc(dev, num_dr, sizeof(*dr), GFP_KERNEL);
|
||||
if (!dr)
|
||||
return -ENOMEM;
|
||||
|
||||
memcpy(dr, card_base_routes, num_base * sizeof(*dr));
|
||||
|
||||
idx = num_base;
|
||||
dr[idx].sink = devm_kasprintf(dev, GFP_KERNEL, "AIF1 Playback");
|
||||
dr[idx].source = devm_kasprintf(dev, GFP_KERNEL, "ssp%d Tx", ssp_port);
|
||||
if (!dr[idx].sink || !dr[idx].source)
|
||||
return -ENOMEM;
|
||||
|
||||
idx++;
|
||||
dr[idx].sink = devm_kasprintf(dev, GFP_KERNEL, "ssp%d Rx", ssp_port);
|
||||
dr[idx].source = devm_kasprintf(dev, GFP_KERNEL, "AIF1 Capture");
|
||||
if (!dr[idx].sink || !dr[idx].source)
|
||||
return -ENOMEM;
|
||||
|
||||
*routes = dr;
|
||||
*num_routes = num_dr;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int avs_card_suspend_pre(struct snd_soc_card *card)
|
||||
{
|
||||
struct snd_soc_dai *codec_dai = snd_soc_card_get_codec_dai(card, RT286_CODEC_DAI);
|
||||
|
@ -207,14 +175,13 @@ static int avs_card_resume_post(struct snd_soc_card *card)
|
|||
|
||||
static int avs_rt286_probe(struct platform_device *pdev)
|
||||
{
|
||||
struct snd_soc_dapm_route *routes;
|
||||
struct snd_soc_dai_link *dai_link;
|
||||
struct snd_soc_acpi_mach *mach;
|
||||
struct snd_soc_card *card;
|
||||
struct snd_soc_jack *jack;
|
||||
struct device *dev = &pdev->dev;
|
||||
const char *pname;
|
||||
int num_routes, ssp_port, ret;
|
||||
int ssp_port, ret;
|
||||
|
||||
mach = dev_get_platdata(dev);
|
||||
pname = mach->mach_params.platform;
|
||||
|
@ -226,12 +193,6 @@ static int avs_rt286_probe(struct platform_device *pdev)
|
|||
return ret;
|
||||
}
|
||||
|
||||
ret = avs_create_dapm_routes(dev, ssp_port, &routes, &num_routes);
|
||||
if (ret) {
|
||||
dev_err(dev, "Failed to create dapm routes: %d", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
jack = devm_kzalloc(dev, sizeof(*jack), GFP_KERNEL);
|
||||
card = devm_kzalloc(dev, sizeof(*card), GFP_KERNEL);
|
||||
if (!jack || !card)
|
||||
|
@ -248,8 +209,8 @@ static int avs_rt286_probe(struct platform_device *pdev)
|
|||
card->num_controls = ARRAY_SIZE(card_controls);
|
||||
card->dapm_widgets = card_widgets;
|
||||
card->num_dapm_widgets = ARRAY_SIZE(card_widgets);
|
||||
card->dapm_routes = routes;
|
||||
card->num_dapm_routes = num_routes;
|
||||
card->dapm_routes = card_base_routes;
|
||||
card->num_dapm_routes = ARRAY_SIZE(card_base_routes);
|
||||
card->fully_routed = true;
|
||||
snd_soc_card_set_drvdata(card, jack);
|
||||
|
||||
|
|
Loading…
Reference in New Issue