diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2007-09-08 14:17:13 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-10-09 21:14:29 -0400 |
commit | 9bc37caadffe8327683980b2323371691fa182e3 (patch) | |
tree | 0253bee2e4fc0b13e740760399b0ca26fe2b4703 /drivers/media/video/ir-kbd-i2c.c | |
parent | 579f1163cd5b2a3fd96ec5b84b18a071e7da3b6b (diff) |
V4L/DVB (6196): cx23885: add support for DViCO FusionHDTV 5 Express
This patch adds digital ATSC / QAM support for the DViCO FusionHDTV5 Express.
Remote control is supported by ir-kbd-i2c, RTC is supported by rtc-isl1208.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Steven Toth <stoth@hauppauge.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/ir-kbd-i2c.c')
-rw-r--r-- | drivers/media/video/ir-kbd-i2c.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/media/video/ir-kbd-i2c.c b/drivers/media/video/ir-kbd-i2c.c index 04f6eb5ea292..d98dd0d1e373 100644 --- a/drivers/media/video/ir-kbd-i2c.c +++ b/drivers/media/video/ir-kbd-i2c.c | |||
@@ -507,6 +507,7 @@ static int ir_probe(struct i2c_adapter *adap) | |||
507 | static const int probe_saa7134[] = { 0x7a, 0x47, 0x71, -1 }; | 507 | static const int probe_saa7134[] = { 0x7a, 0x47, 0x71, -1 }; |
508 | static const int probe_em28XX[] = { 0x30, 0x47, -1 }; | 508 | static const int probe_em28XX[] = { 0x30, 0x47, -1 }; |
509 | static const int probe_cx88[] = { 0x18, 0x6b, 0x71, -1 }; | 509 | static const int probe_cx88[] = { 0x18, 0x6b, 0x71, -1 }; |
510 | static const int probe_cx23885[] = { 0x6b, -1 }; | ||
510 | const int *probe = NULL; | 511 | const int *probe = NULL; |
511 | struct i2c_client c; | 512 | struct i2c_client c; |
512 | unsigned char buf; | 513 | unsigned char buf; |
@@ -527,6 +528,8 @@ static int ir_probe(struct i2c_adapter *adap) | |||
527 | break; | 528 | break; |
528 | case I2C_HW_B_CX2388x: | 529 | case I2C_HW_B_CX2388x: |
529 | probe = probe_cx88; | 530 | probe = probe_cx88; |
531 | case I2C_HW_B_CX23885: | ||
532 | probe = probe_cx23885; | ||
530 | break; | 533 | break; |
531 | } | 534 | } |
532 | if (NULL == probe) | 535 | if (NULL == probe) |