diff options
author | Takashi Iwai <tiwai@suse.de> | 2024-06-17 12:05:24 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2024-06-18 12:51:50 +0200 |
commit | 4d4500b4396a226d159b2633b091c0b65509b24a (patch) | |
tree | bad978c3171ff97c72c271d31480c0b893a76843 /sound/isa/sb/emu8000.c | |
parent | e946455ce116fd822718d6acd874f3f4cf306520 (diff) |
ALSA: sb: 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-3-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa/sb/emu8000.c')
-rw-r--r-- | sound/isa/sb/emu8000.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sound/isa/sb/emu8000.c b/sound/isa/sb/emu8000.c index a6405772d537..af478c36ce5b 100644 --- a/sound/isa/sb/emu8000.c +++ b/sound/isa/sb/emu8000.c @@ -1039,10 +1039,8 @@ snd_emu8000_create_mixer(struct snd_card *card, struct snd_emu8000 *emu) return 0; __error: - for (i = 0; i < EMU8000_NUM_CONTROLS; i++) { - if (emu->controls[i]) - snd_ctl_remove(card, emu->controls[i]); - } + for (i = 0; i < EMU8000_NUM_CONTROLS; i++) + snd_ctl_remove(card, emu->controls[i]); return err; } |