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 16:20:40 +0800
commit4e351a1cf53e11c5dbbfffca1c097d9ac947f11e (patch)
tree66126a8da2a79642d3a929ffe54f65894edc559d
parent692958ee92918112548cc3bd31043a0628a4c96b (diff)
ENGR00229852 csi/v4l: lower the priority of "working queue empty" messagerel_imx_3.0.35_12.10.02
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;
}