dect
/
linux-2.6
Archived
13
0
Fork 0

[media] cx23885: Silence unknown command warnings

I am seeing a constant stream of warnings on my cx23885 based card:
	cx23885_tuner_callback(): Unknown command 0x2.

Add a check in cx23885_tuner_callback to silence it.

Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
Anton Blanchard 2012-07-01 21:38:03 -03:00 committed by Mauro Carvalho Chehab
parent 0ac60acb54
commit c6cff16926
1 changed files with 1 additions and 1 deletions

View File

@ -963,7 +963,7 @@ int cx23885_tuner_callback(void *priv, int component, int command, int arg)
struct cx23885_dev *dev = port->dev;
u32 bitmask = 0;
if (command == XC2028_RESET_CLK)
if ((command == XC2028_RESET_CLK) || (command == XC2028_I2C_FLUSH))
return 0;
if (command != 0) {