aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx18/cx18-mailbox.c
diff options
context:
space:
mode:
authorAndy Walls <awalls@radix.net>2008-11-23 16:27:57 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-12-30 09:38:13 -0200
commitec984f437842426622fb54b56bbcc416183eefe6 (patch)
treeda00a9190a9feaffdb02001fe94e3449c40412b9 /drivers/media/video/cx18/cx18-mailbox.c
parent20543ec414dee5e9d5e7a82f678fa2c0b21c5bdb (diff)
downloadkernel_samsung_smdk4412-ec984f437842426622fb54b56bbcc416183eefe6.zip
kernel_samsung_smdk4412-ec984f437842426622fb54b56bbcc416183eefe6.tar.gz
kernel_samsung_smdk4412-ec984f437842426622fb54b56bbcc416183eefe6.tar.bz2
V4L/DVB (9730): cx18: Quiet a sometimes common warning that often has benign consequences
cx18: Quiet a sometimes common warning that often has benign consequences. No one probably cares that the firmware took forever to ack our command, as they always seem to succeed whether or not the firmware acks it in a reasonable amount of time. Signed-off-by: Andy Walls <awalls@radix.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx18/cx18-mailbox.c')
-rw-r--r--drivers/media/video/cx18/cx18-mailbox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/video/cx18/cx18-mailbox.c b/drivers/media/video/cx18/cx18-mailbox.c
index 70802a9..70a8272 100644
--- a/drivers/media/video/cx18/cx18-mailbox.c
+++ b/drivers/media/video/cx18/cx18-mailbox.c
@@ -557,9 +557,9 @@ static int cx18_api_call(struct cx18 *cx, u32 cmd, int args, u32 data[])
if (ret == 0) {
/* Timed out */
mutex_unlock(mb_lock);
- CX18_WARN("sending %s timed out waiting %d msecs for RPU "
- "acknowledgement\n",
- info->name, jiffies_to_msecs(timeout));
+ CX18_DEBUG_WARN("sending %s timed out waiting %d msecs for RPU "
+ "acknowledgement\n",
+ info->name, jiffies_to_msecs(timeout));
return -EINVAL;
}