You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
ALSA: Kill snd_assert() in sound/core/*
Kill snd_assert() in sound/core/*, 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
5ef03460a6
commit
7eaa943c8e
@@ -64,7 +64,8 @@ static int snd_oss_kernel_minor(int type, struct snd_card *card, int dev)
|
||||
|
||||
switch (type) {
|
||||
case SNDRV_OSS_DEVICE_TYPE_MIXER:
|
||||
snd_assert(card != NULL && dev <= 1, return -EINVAL);
|
||||
if (snd_BUG_ON(!card || dev < 0 || dev > 1))
|
||||
return -EINVAL;
|
||||
minor = SNDRV_MINOR_OSS(card->number, (dev ? SNDRV_MINOR_OSS_MIXER1 : SNDRV_MINOR_OSS_MIXER));
|
||||
break;
|
||||
case SNDRV_OSS_DEVICE_TYPE_SEQUENCER:
|
||||
@@ -74,11 +75,13 @@ static int snd_oss_kernel_minor(int type, struct snd_card *card, int dev)
|
||||
minor = SNDRV_MINOR_OSS_MUSIC;
|
||||
break;
|
||||
case SNDRV_OSS_DEVICE_TYPE_PCM:
|
||||
snd_assert(card != NULL && dev <= 1, return -EINVAL);
|
||||
if (snd_BUG_ON(!card || dev < 0 || dev > 1))
|
||||
return -EINVAL;
|
||||
minor = SNDRV_MINOR_OSS(card->number, (dev ? SNDRV_MINOR_OSS_PCM1 : SNDRV_MINOR_OSS_PCM));
|
||||
break;
|
||||
case SNDRV_OSS_DEVICE_TYPE_MIDI:
|
||||
snd_assert(card != NULL && dev <= 1, return -EINVAL);
|
||||
if (snd_BUG_ON(!card || dev < 0 || dev > 1))
|
||||
return -EINVAL;
|
||||
minor = SNDRV_MINOR_OSS(card->number, (dev ? SNDRV_MINOR_OSS_MIDI1 : SNDRV_MINOR_OSS_MIDI));
|
||||
break;
|
||||
case SNDRV_OSS_DEVICE_TYPE_DMFM:
|
||||
@@ -90,7 +93,8 @@ static int snd_oss_kernel_minor(int type, struct snd_card *card, int dev)
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
snd_assert(minor >= 0 && minor < SNDRV_OSS_MINORS, return -EINVAL);
|
||||
if (snd_BUG_ON(minor < 0 || minor >= SNDRV_OSS_MINORS))
|
||||
return -EINVAL;
|
||||
return minor;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user