ASoC: dapm: Use snd_soc_dapm_add_path() in snd_soc_dapm_new_pcm()

We already know the widgets we want to connect, so use snd_soc_dapm_add_path()
instead of snd_soc_dapm_add_route() in snd_soc_dapm_new_pcm().

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
Lars-Peter Clausen 2014-05-07 16:20:27 +02:00 коммит произвёл Mark Brown
Родитель 9887c20b9f
Коммит fe83897fc5
1 изменённых файлов: 5 добавлений и 10 удалений

Просмотреть файл

@ -3242,11 +3242,11 @@ int snd_soc_dapm_new_pcm(struct snd_soc_card *card,
struct snd_soc_dapm_widget *source, struct snd_soc_dapm_widget *source,
struct snd_soc_dapm_widget *sink) struct snd_soc_dapm_widget *sink)
{ {
struct snd_soc_dapm_route routes[2];
struct snd_soc_dapm_widget template; struct snd_soc_dapm_widget template;
struct snd_soc_dapm_widget *w; struct snd_soc_dapm_widget *w;
size_t len; size_t len;
char *link_name; char *link_name;
int ret;
len = strlen(source->name) + strlen(sink->name) + 2; len = strlen(source->name) + strlen(sink->name) + 2;
link_name = devm_kzalloc(card->dev, len, GFP_KERNEL); link_name = devm_kzalloc(card->dev, len, GFP_KERNEL);
@ -3273,15 +3273,10 @@ int snd_soc_dapm_new_pcm(struct snd_soc_card *card,
w->params = params; w->params = params;
memset(&routes, 0, sizeof(routes)); ret = snd_soc_dapm_add_path(&card->dapm, source, w, NULL, NULL);
if (ret)
routes[0].source = source->name; return ret;
routes[0].sink = link_name; return snd_soc_dapm_add_path(&card->dapm, w, sink, NULL, NULL);
routes[1].source = link_name;
routes[1].sink = sink->name;
return snd_soc_dapm_add_routes(&card->dapm, routes,
ARRAY_SIZE(routes));
} }
int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm, int snd_soc_dapm_new_dai_widgets(struct snd_soc_dapm_context *dapm,