forked from Minki/linux
ASoC: soc-core: merge snd_soc_unregister_dai() and soc_del_dai()
We don't need to separete snd_soc_unregister_dai() and soc_del_dai() anymore. Let's merge these Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Link: https://lore.kernel.org/r/87sgn1hkxg.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
7ca24386a7
commit
ffdbca0be6
@ -2511,11 +2511,12 @@ static inline char *fmt_multiple_name(struct device *dev,
|
||||
return devm_kstrdup(dev, dai_drv->name, GFP_KERNEL);
|
||||
}
|
||||
|
||||
static void soc_del_dai(struct snd_soc_dai *dai)
|
||||
void snd_soc_unregister_dai(struct snd_soc_dai *dai)
|
||||
{
|
||||
dev_dbg(dai->dev, "ASoC: Unregistered DAI '%s'\n", dai->name);
|
||||
list_del(&dai->list);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
|
||||
|
||||
/**
|
||||
* snd_soc_register_dai - Register a DAI dynamically & create its widgets
|
||||
@ -2576,13 +2577,6 @@ struct snd_soc_dai *snd_soc_register_dai(struct snd_soc_component *component,
|
||||
dev_dbg(dev, "ASoC: Registered DAI '%s'\n", dai->name);
|
||||
return dai;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(snd_soc_register_dai);
|
||||
|
||||
void snd_soc_unregister_dai(struct snd_soc_dai *dai)
|
||||
{
|
||||
soc_del_dai(dai);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(snd_soc_unregister_dai);
|
||||
|
||||
/**
|
||||
* snd_soc_unregister_dai - Unregister DAIs from the ASoC core
|
||||
|
Loading…
Reference in New Issue
Block a user