aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx88
diff options
context:
space:
mode:
authorSteven Toth <stoth@linuxtv.org>2008-10-16 19:30:45 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-10-17 16:28:03 -0400
commit376a841440967417a1e8d8f6b2672a27c43d262f (patch)
tree50e89bbed45200ed31a359b8a7e65fcce0e8f319 /drivers/media/video/cx88
parent8f3cd53006a7645ffbedb982425f033497b1ee3c (diff)
V4L/DVB (9262): cx88: Change spurious buffer message into a debug only message
A number of users have complained that their syslog often shows this messages but it doesn't impact performance. I'm changing this to a debug message, so developers will still see the message during testing and users will no longer be bothered by this. Signed-off-by: Steven Toth <stoth@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx88')
-rw-r--r--drivers/media/video/cx88/cx88-core.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/video/cx88/cx88-core.c b/drivers/media/video/cx88/cx88-core.c
index d656fec59010..60705b08bfe8 100644
--- a/drivers/media/video/cx88/cx88-core.c
+++ b/drivers/media/video/cx88/cx88-core.c
@@ -549,7 +549,8 @@ void cx88_wakeup(struct cx88_core *core,
549 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT); 549 mod_timer(&q->timeout, jiffies+BUFFER_TIMEOUT);
550 } 550 }
551 if (bc != 1) 551 if (bc != 1)
552 printk("%s: %d buffers handled (should be 1)\n",__func__,bc); 552 dprintk(2, "%s: %d buffers handled (should be 1)\n",
553 __func__, bc);
553} 554}
554 555
555void cx88_shutdown(struct cx88_core *core) 556void cx88_shutdown(struct cx88_core *core)