ASoC: soc-core: remove unneeded list_empty() check for snd_soc_try_rebind_card()
list_for_each_entry_safe() will do nothing if it was empty list. This patch removes unneeded list_empty() check for list_for_each_entry_safe(). Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Link: https://lore.kernel.org/r/878ss5aho6.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:

committed by
Mark Brown

parent
d8ca7a0a85
commit
b245d273cb
@@ -2808,13 +2808,10 @@ static void snd_soc_try_rebind_card(void)
|
|||||||
{
|
{
|
||||||
struct snd_soc_card *card, *c;
|
struct snd_soc_card *card, *c;
|
||||||
|
|
||||||
if (!list_empty(&unbind_card_list)) {
|
list_for_each_entry_safe(card, c, &unbind_card_list, list)
|
||||||
list_for_each_entry_safe(card, c, &unbind_card_list, list) {
|
|
||||||
if (!snd_soc_bind_card(card))
|
if (!snd_soc_bind_card(card))
|
||||||
list_del(&card->list);
|
list_del(&card->list);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
int snd_soc_add_component(struct device *dev,
|
int snd_soc_add_component(struct device *dev,
|
||||||
struct snd_soc_component *component,
|
struct snd_soc_component *component,
|
||||||
|
Reference in New Issue
Block a user