mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
ALSA: spi: Drop NULL check for snd_ctl_remove()
Since snd_ctl_remove() accepts the NULL kcontrol argument now, we can drop the check in the caller side. Link: https://lore.kernel.org/20240617100529.6667-6-tiwai@suse.de Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
9d67a4006f
commit
f900a055f8
@ -726,12 +726,8 @@ static int snd_at73c213_mixer(struct snd_at73c213 *chip)
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
for (idx = 1; idx < ARRAY_SIZE(snd_at73c213_controls) + 1; idx++) {
|
for (idx = 1; idx < ARRAY_SIZE(snd_at73c213_controls) + 1; idx++)
|
||||||
struct snd_kcontrol *kctl;
|
snd_ctl_remove(card, snd_ctl_find_numid(card, idx));
|
||||||
kctl = snd_ctl_find_numid(card, idx);
|
|
||||||
if (kctl)
|
|
||||||
snd_ctl_remove(card, kctl);
|
|
||||||
}
|
|
||||||
return errval;
|
return errval;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user