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 <elezegar...@gmail.com>
---
 drivers/media/usb/stk1160/stk1160-video.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/media/usb/stk1160/stk1160-video.c 
b/drivers/media/usb/stk1160/stk1160-video.c
index f8dcf6d..07186c7 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->urb_ctl.buf);
+       WARN_ON(dev->urb_ctl.buf);
 
        spin_lock_irqsave(&dev->buf_lock, flags);
        if (!list_empty(&dev->avail_bufs)) {
-- 
1.7.8.6

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to