From: Robby Cai Date: Mon, 12 Nov 2012 08:17:14 +0000 (+0800) Subject: ENGR00229852 csi/v4l: lower the priority of "working queue empty" message X-Git-Tag: v3.0.35-fsl~234 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d0adbc93aacb1775adb7c67b513399ea243b463d;p=karo-tx-linux.git ENGR00229852 csi/v4l: lower the priority of "working queue empty" message When pause the capture test program, the "working queue empty" message shows up repeatedly. However this message is expected to show up because there's no QBUF called. Change pr_err to pr_debug to keep it as debug level. Signed-off-by: Robby Cai --- diff --git a/drivers/media/video/mxc/capture/csi_v4l2_capture.c b/drivers/media/video/mxc/capture/csi_v4l2_capture.c index c3ec6e4e89d1..d8a956c557eb 100644 --- a/drivers/media/video/mxc/capture/csi_v4l2_capture.c +++ b/drivers/media/video/mxc/capture/csi_v4l2_capture.c @@ -273,7 +273,7 @@ static void camera_callback(u32 mask, void *dev) return; if (list_empty(&cam->working_q)) { - pr_err("ERROR: v4l2 capture: %s: " + pr_debug("v4l2 capture: %s: " "working queue empty\n", __func__); return; }