ASoC: soc-core: remove snd_soc_component_add/del()

soc-core has
snd_soc_add_component(), snd_soc_component_add(),
snd_soc_del_component(), snd_soc_component_del().

These are very confusing naming.
snd_soc_component_xxx() are called from snd_soc_xxx_component(),
and these are very small.
Let's merge these into snd_soc_xxx_component(), and
remove snd_soc_component_xxx().

Reported-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Link: https://lore.kernel.org/r/871rum3jmy.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
Kuninori Morimoto 2019-11-05 15:46:45 +09:00 коммит произвёл Mark Brown
Родитель 486c7978ff
Коммит b18768f561
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 24D68B725D5487D0
1 изменённых файлов: 25 добавлений и 33 удалений

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

@ -2746,34 +2746,6 @@ EXPORT_SYMBOL_GPL(snd_soc_component_exit_regmap);
#endif
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);
if (component->regmap)
snd_soc_component_setup_regmap(component);
}
/* see for_each_component */
list_add(&component->list, &component_list);
mutex_unlock(&client_mutex);
}
static void snd_soc_component_del(struct snd_soc_component *component)
{
struct snd_soc_card *card = component->card;
if (card)
snd_soc_unbind_card(card, false);
list_del(&component->list);
}
#define ENDIANNESS_MAP(name) \
(SNDRV_PCM_FMTBIT_##name##LE | SNDRV_PCM_FMTBIT_##name##BE)
static u64 endianness_format_map[] = {
@ -2820,8 +2792,14 @@ static void snd_soc_try_rebind_card(void)
static void snd_soc_del_component_unlocked(struct snd_soc_component *component)
{
struct snd_soc_card *card = component->card;
snd_soc_unregister_dais(component);
snd_soc_component_del(component);
if (card)
snd_soc_unbind_card(card, false);
list_del(&component->list);
}
int snd_soc_add_component(struct device *dev,
@ -2833,6 +2811,8 @@ int snd_soc_add_component(struct device *dev,
int ret;
int i;
mutex_lock(&client_mutex);
ret = snd_soc_component_initialize(component, component_driver, dev);
if (ret)
goto err_free;
@ -2850,14 +2830,26 @@ int snd_soc_add_component(struct device *dev,
goto err_cleanup;
}
snd_soc_component_add(component);
snd_soc_try_rebind_card();
if (!component->driver->write && !component->driver->read) {
if (!component->regmap)
component->regmap = dev_get_regmap(component->dev,
NULL);
if (component->regmap)
snd_soc_component_setup_regmap(component);
}
return 0;
/* see for_each_component */
list_add(&component->list, &component_list);
err_cleanup:
snd_soc_del_component_unlocked(component);
if (ret < 0)
snd_soc_del_component_unlocked(component);
err_free:
mutex_unlock(&client_mutex);
if (ret == 0)
snd_soc_try_rebind_card();
return ret;
}
EXPORT_SYMBOL_GPL(snd_soc_add_component);