summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/cx18
diff options
context:
space:
mode:
authorAndy Walls <awalls@radix.net>2008-11-23 14:27:57 -0500
committerAndy Walls <awalls@radix.net>2008-11-23 14:27:57 -0500
commit752b7bb4231bff537eda1576e55e26ed7a363e38 (patch)
treecb492c08e1a12f579551007c0d9c1862bbfa794c /linux/drivers/media/video/cx18
parent87a6503adb7cc52716e97cede3c58b6be46ea993 (diff)
downloadmediapointer-dvb-s2-752b7bb4231bff537eda1576e55e26ed7a363e38.tar.gz
mediapointer-dvb-s2-752b7bb4231bff537eda1576e55e26ed7a363e38.tar.bz2
cx18: Quiet a sometimes common warning that often has benign consequences
From: Andy Walls <awalls@radix.net> 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. Priority: normal Signed-off-by: Andy Walls <awalls@radix.net>
Diffstat (limited to 'linux/drivers/media/video/cx18')
-rw-r--r--linux/drivers/media/video/cx18/cx18-mailbox.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/video/cx18/cx18-mailbox.c b/linux/drivers/media/video/cx18/cx18-mailbox.c
index 420325be4..8415b9683 100644
--- a/linux/drivers/media/video/cx18/cx18-mailbox.c
+++ b/linux/drivers/media/video/cx18/cx18-mailbox.c
@@ -563,9 +563,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;
}