summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobby Cai <R63905@freescale.com>2012-11-12 16:17:14 +0800
committerRobby Cai <R63905@freescale.com>2012-11-19 15:59:09 +0800
commitda530263e2ee17008df97c0eecf268a9c3fc3538 (patch)
tree74e198a0cfde7302a0c3e65cc9168ae0262000c5
parentc17e62b3fc9579c7e961a7988e19532b58116403 (diff)
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 <R63905@freescale.com>
-rw-r--r--drivers/media/video/mxc/capture/csi_v4l2_capture.c2
1 files changed, 1 insertions, 1 deletions
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;
}