]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ASoC: Remove name_prefix unset during DAI link init hack again
authorLars-Peter Clausen <lars@metafoo.de>
Sat, 26 Apr 2014 11:02:29 +0000 (13:02 +0200)
committerMark Brown <broonie@linaro.org>
Sat, 26 Apr 2014 16:55:33 +0000 (17:55 +0100)
This was initially removed in commit 6479f15ad ("ASoC: Remove name_prefix unset
during DAI link init hack"), but was brought back in commit 503ae5e0 ("ASoC:
core: Add helpers for dai link and aux dev init") by accident. This patch
removes it again.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
sound/soc/soc-core.c

index b2d889667ab44f649c249b1a6b663bf79017446b..54a1d91f1d9661aab8c9758380825e6d2db02329 100644 (file)
@@ -1274,14 +1274,10 @@ static int soc_aux_dev_init(struct snd_soc_card *card,
 {
        struct snd_soc_aux_dev *aux_dev = &card->aux_dev[num];
        struct snd_soc_pcm_runtime *rtd = &card->rtd_aux[num];
-       const char *temp;
        int ret;
 
        rtd->card = card;
 
-       temp = codec->name_prefix;
-       codec->name_prefix = NULL;
-
        /* do machine specific initialization */
        if (aux_dev->init) {
                ret = aux_dev->init(&codec->dapm);
@@ -1289,8 +1285,6 @@ static int soc_aux_dev_init(struct snd_soc_card *card,
                        return ret;
        }
 
-       codec->name_prefix = temp;
-
        rtd->codec = codec;
 
        return 0;
@@ -1302,15 +1296,10 @@ static int soc_dai_link_init(struct snd_soc_card *card,
 {
        struct snd_soc_dai_link *dai_link =  &card->dai_link[num];
        struct snd_soc_pcm_runtime *rtd = &card->rtd[num];
-       const char *temp;
        int ret;
 
        rtd->card = card;
 
-       /* machine controls, routes and widgets are not prefixed */
-       temp = codec->name_prefix;
-       codec->name_prefix = NULL;
-
        /* do machine specific initialization */
        if (dai_link->init) {
                ret = dai_link->init(rtd);
@@ -1318,8 +1307,6 @@ static int soc_dai_link_init(struct snd_soc_card *card,
                        return ret;
        }
 
-       codec->name_prefix = temp;
-
        rtd->codec = codec;
 
        return 0;