]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ASoC: soc-core: remove snd_soc_component_add_unlocked()
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tue, 8 May 2018 03:22:11 +0000 (03:22 +0000)
committerMark Brown <broonie@kernel.org>
Wed, 9 May 2018 09:40:01 +0000 (18:40 +0900)
There is no user to call snd_soc_component_add_unlocked() anymore.
Let's merge snd_soc_component_add_unlocked() and
snd_soc_component_add().

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/soc-core.c

index f22ef347eead190aafcc7a6b084608a8478b0ba4..2d3abb3f1231a1ff0da548eb7c4767492b3aed50 100644 (file)
@@ -2958,8 +2958,10 @@ EXPORT_SYMBOL_GPL(snd_soc_component_exit_regmap);
 
 #endif
 
-static void snd_soc_component_add_unlocked(struct snd_soc_component *component)
+static void snd_soc_component_add(struct snd_soc_component *component)
 {
+       mutex_lock(&client_mutex);
+
        if (!component->driver->write && !component->driver->read) {
                if (!component->regmap)
                        component->regmap = dev_get_regmap(component->dev, NULL);
@@ -2969,12 +2971,7 @@ static void snd_soc_component_add_unlocked(struct snd_soc_component *component)
 
        list_add(&component->list, &component_list);
        INIT_LIST_HEAD(&component->dobj_list);
-}
 
-static void snd_soc_component_add(struct snd_soc_component *component)
-{
-       mutex_lock(&client_mutex);
-       snd_soc_component_add_unlocked(component);
        mutex_unlock(&client_mutex);
 }