From: Ezequiel Garcia Date: Fri, 23 Nov 2012 11:12:35 +0000 (-0300) Subject: [media] stk1160: Replace BUG_ON with WARN_ON X-Git-Tag: v3.9-rc5~2^2~333 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e003ae399c160e00c1a882dc6dd4f0ef855ae616;p=platform%2Fkernel%2Flinux-3.10.git [media] stk1160: Replace BUG_ON with WARN_ON This situation is not even an error condition so it's stupid to BUG_ON. Learn the lesson: http://permalink.gmane.org/gmane.linux.kernel/1347333 Signed-off-by: Ezequiel Garcia Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/usb/stk1160/stk1160-video.c b/drivers/media/usb/stk1160/stk1160-video.c index 0a4ee85..39f1aae 100644 --- a/drivers/media/usb/stk1160/stk1160-video.c +++ b/drivers/media/usb/stk1160/stk1160-video.c @@ -78,7 +78,7 @@ struct stk1160_buffer *stk1160_next_buffer(struct stk1160 *dev) unsigned long flags = 0; /* Current buffer must be NULL when this functions gets called */ - BUG_ON(dev->isoc_ctl.buf); + WARN_ON(dev->isoc_ctl.buf); spin_lock_irqsave(&dev->buf_lock, flags); if (!list_empty(&dev->avail_bufs)) {