ALSA: Kill snd_assert() in other places
Kill snd_assert() in other places, either removed or replaced with if () with snd_BUG_ON(). Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
committed by
Jaroslav Kysela
parent
da3cec35dd
commit
5e246b850d
@@ -868,7 +868,8 @@ snd_harmony_mixer_init(struct snd_harmony *h)
|
||||
struct snd_card *card = h->card;
|
||||
int idx, err;
|
||||
|
||||
snd_assert(h != NULL, return -EINVAL);
|
||||
if (snd_BUG_ON(!h))
|
||||
reutrn -EINVAL;
|
||||
strcpy(card->mixername, "Harmony Gain control interface");
|
||||
|
||||
for (idx = 0; idx < HARMONY_CONTROLS; idx++) {
|
||||
|
||||
Reference in New Issue
Block a user