summaryrefslogtreecommitdiffstats
path: root/sound/mips
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2013-11-05 15:03:05 +0100
committerTakashi Iwai <tiwai@suse.de>2013-11-06 08:35:16 +0100
commitc3cd1badc86c62f64f7e1d7034b078cb7e9b254b (patch)
tree9e9b652307ae38c25a4f8782cb34fe80f555ce83 /sound/mips
parent5a19b178d7b4dd162b3d4c7e729f30348f2eb177 (diff)
downloadop-kernel-dev-c3cd1badc86c62f64f7e1d7034b078cb7e9b254b.zip
op-kernel-dev-c3cd1badc86c62f64f7e1d7034b078cb7e9b254b.tar.gz
ALSA: mips/ad1843: Use WARN_ON() instead of BUG_ON()
BUG_ON() is rather useless for debugging as it leads to panic(). Use WARN_ON() and handle the error cases accordingly. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/mips')
-rw-r--r--sound/mips/ad1843.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mips/ad1843.c b/sound/mips/ad1843.c
index c624510..5869075 100644
--- a/sound/mips/ad1843.c
+++ b/sound/mips/ad1843.c
@@ -276,7 +276,7 @@ static void ad1843_write_multi(struct snd_ad1843 *ad1843, int argcount, ...)
if (reg == -1)
reg = fp->reg;
else
- BUG_ON(reg != fp->reg);
+ WARN_ON(reg != fp->reg);
m = ((1 << fp->nbits) - 1) << fp->lo_bit;
mask |= m;
bits |= (value << fp->lo_bit) & m;
OpenPOWER on IntegriCloud