diff options
author | Takashi Iwai <tiwai@suse.de> | 2017-09-07 10:51:54 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2017-09-07 10:52:37 +0200 |
commit | 2a0d85d9add77bb7a4ddd61557ffb21ca5370d15 (patch) | |
tree | 9463c4614125cb06cbf4c9e439afd5ed28f245a1 /sound | |
parent | c8445589450582a3d948779c0fc5106604ce89a1 (diff) | |
download | op-kernel-dev-2a0d85d9add77bb7a4ddd61557ffb21ca5370d15.zip op-kernel-dev-2a0d85d9add77bb7a4ddd61557ffb21ca5370d15.tar.gz |
ALSA: asihpi: Kill BUG_ON() usages
BUG_ON() is the worst choice for a trivial sanity check.
Either it should be removed or replaced with a softer one like
WARN_ON() if still really needed.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/asihpi/asihpi.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sound/pci/asihpi/asihpi.c b/sound/pci/asihpi/asihpi.c index 976a3d2..70d023a 100644 --- a/sound/pci/asihpi/asihpi.c +++ b/sound/pci/asihpi/asihpi.c @@ -558,12 +558,10 @@ static void snd_card_asihpi_pcm_int_start(struct snd_pcm_substream *substream) struct snd_card_asihpi_pcm *dpcm; struct snd_card_asihpi *card; - BUG_ON(!substream); - dpcm = (struct snd_card_asihpi_pcm *)substream->runtime->private_data; card = snd_pcm_substream_chip(substream); - BUG_ON(in_interrupt()); + WARN_ON(in_interrupt()); tasklet_disable(&card->t); card->llmode_streampriv = dpcm; tasklet_enable(&card->t); @@ -578,8 +576,6 @@ static void snd_card_asihpi_pcm_int_stop(struct snd_pcm_substream *substream) struct snd_card_asihpi_pcm *dpcm; struct snd_card_asihpi *card; - BUG_ON(!substream); - dpcm = (struct snd_card_asihpi_pcm *)substream->runtime->private_data; card = snd_pcm_substream_chip(substream); |