소스 검색

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>
Devin Heitmueller 17 년 전
부모
커밋
4269a8eed2
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      drivers/media/video/em28xx/em28xx-core.c

+ 2 - 2
drivers/media/video/em28xx/em28xx-core.c

@@ -576,8 +576,8 @@ static void em28xx_irq_callback(struct urb *urb)
 
 
 	urb->status = usb_submit_urb(urb, GFP_ATOMIC);
 	urb->status = usb_submit_urb(urb, GFP_ATOMIC);
 	if (urb->status) {
 	if (urb->status) {
-		em28xx_err("urb resubmit failed (error=%i)\n",
-			urb->status);
+		em28xx_isocdbg("urb resubmit failed (error=%i)\n",
+			       urb->status);
 	}
 	}
 }
 }