aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2006-03-14 14:07:42 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-21 11:53:30 -0500
commit12a219da0a74d1d797475addbccaedf2343be571 (patch)
treec6610dd1976b8d36b94e8b2e70a4c1dfe73a3577 /drivers/media
parent34731df288a5ffe4b0c396caf8cd24c6a710a222 (diff)
V4L/DVB (3502): Saa7134: make unsupported secondary decoder message generic
There are already some supported devices that contain two saa713x chips on-board, where only one of these chips is currently functional in the driver. We are already printing a warning message for the second saa7134 decoder in SAA7134_BOARD_AVERMEDIA_A169_B. This patch alters that case to make it generic, so that other cards in the same situation can use it. Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/video/saa7134/saa7134-cards.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/video/saa7134/saa7134-cards.c b/drivers/media/video/saa7134/saa7134-cards.c
index f9a29c415c73..5e0251a33e8b 100644
--- a/drivers/media/video/saa7134/saa7134-cards.c
+++ b/drivers/media/video/saa7134/saa7134-cards.c
@@ -3471,10 +3471,10 @@ int saa7134_board_init1(struct saa7134_dev *dev)
3471 dev->has_remote = SAA7134_REMOTE_I2C; 3471 dev->has_remote = SAA7134_REMOTE_I2C;
3472 break; 3472 break;
3473 case SAA7134_BOARD_AVERMEDIA_A169_B: 3473 case SAA7134_BOARD_AVERMEDIA_A169_B:
3474 printk("%s: AVerMedia A169: dual saa7134 broadcast decoders\n" 3474 printk("%s: %s: dual saa713x broadcast decoders\n"
3475 "%s: Sorry, none of the inputs to this chip are supported yet.\n" 3475 "%s: Sorry, none of the inputs to this chip are supported yet.\n"
3476 "%s: Dual decoder functionality is disabled for now, use the other chip.\n", 3476 "%s: Dual decoder functionality is disabled for now, use the other chip.\n",
3477 dev->name,dev->name,dev->name); 3477 dev->name,card(dev).name,dev->name,dev->name);
3478 break; 3478 break;
3479 } 3479 }
3480 return 0; 3480 return 0;