diff options
author | Devin Heitmueller <devin.heitmueller@gmail.com> | 2008-04-21 06:01:09 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-24 13:09:44 -0400 |
commit | 4269a8eed210d143298baf80185317fc1dcb25ca (patch) | |
tree | 5280d21c07b5cc9739b86436738bead10514feb7 /drivers/media/video/em28xx | |
parent | 33e5316113b1a472f54579f014739e4a4a53d704 (diff) |
V4L/DVB (7652): em28xx: Drop the severity level of the "urb resubmit failed"
em28xx-core.c
- Drop the severity level of the "urb resubmit failed" to debug, since it
occurs every time a stream disconnects, which fills the dmesg log
Signed-off-by: Devin Heitmueller <devin.heitmueller@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/em28xx')
-rw-r--r-- | drivers/media/video/em28xx/em28xx-core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/em28xx/em28xx-core.c b/drivers/media/video/em28xx/em28xx-core.c index db40358c773b..f8c41d8c74c4 100644 --- a/drivers/media/video/em28xx/em28xx-core.c +++ b/drivers/media/video/em28xx/em28xx-core.c | |||
@@ -576,8 +576,8 @@ static void em28xx_irq_callback(struct urb *urb) | |||
576 | 576 | ||
577 | urb->status = usb_submit_urb(urb, GFP_ATOMIC); | 577 | urb->status = usb_submit_urb(urb, GFP_ATOMIC); |
578 | if (urb->status) { | 578 | if (urb->status) { |
579 | em28xx_err("urb resubmit failed (error=%i)\n", | 579 | em28xx_isocdbg("urb resubmit failed (error=%i)\n", |
580 | urb->status); | 580 | urb->status); |
581 | } | 581 | } |
582 | } | 582 | } |
583 | 583 | ||