diff options
author | Jean Delvare <khali@linux-fr.org> | 2009-05-13 15:55:13 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-16 17:21:12 -0400 |
commit | 20b0ead5fd82fcf4824ea0b9c082d9dcfae59b02 (patch) | |
tree | e0f4627a06e5d13ed20b534d5c0b95186c631302 /drivers/media/video/ivtv | |
parent | d9a88e632b2c527165434c404a0a1ca16d2d3793 (diff) |
V4L/DVB (11849): ivtv: Probe more I2C addresses for IR devices
Probe I2C addresses 0x71 and 0x6b for IR receiver devices (for the
PVR150 and Adaptec cards, respectively.)
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/ivtv')
-rw-r--r-- | drivers/media/video/ivtv/ivtv-i2c.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/media/video/ivtv/ivtv-i2c.c b/drivers/media/video/ivtv/ivtv-i2c.c index 0ecde9ca05c1..e52aa322b134 100644 --- a/drivers/media/video/ivtv/ivtv-i2c.c +++ b/drivers/media/video/ivtv/ivtv-i2c.c | |||
@@ -637,7 +637,12 @@ int init_ivtv_i2c(struct ivtv *itv) | |||
637 | That's why we probe 0x1a (~0x34) first. CB | 637 | That's why we probe 0x1a (~0x34) first. CB |
638 | */ | 638 | */ |
639 | const unsigned short addr_list[] = { | 639 | const unsigned short addr_list[] = { |
640 | 0x1a, 0x18, 0x64, 0x30, | 640 | 0x1a, /* Hauppauge IR external */ |
641 | 0x18, /* Hauppauge IR internal */ | ||
642 | 0x71, /* Hauppauge IR (PVR150) */ | ||
643 | 0x64, /* Pixelview IR */ | ||
644 | 0x30, /* KNC ONE IR */ | ||
645 | 0x6b, /* Adaptec IR */ | ||
641 | I2C_CLIENT_END | 646 | I2C_CLIENT_END |
642 | }; | 647 | }; |
643 | 648 | ||