diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-05-13 19:55:13 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-05-13 19:55:13 +0000 |
commit | eeb337b881232de30fee5db9fb1899f381ca4249 (patch) | |
tree | 8a88d34e562e9c69ee689e5db24e52528d24e415 /linux/drivers/media/video/ivtv/ivtv-i2c.c | |
parent | d7c1afcf9e6a72c1c7b85032e33a4a45091694b6 (diff) | |
download | mediapointer-dvb-s2-eeb337b881232de30fee5db9fb1899f381ca4249.tar.gz mediapointer-dvb-s2-eeb337b881232de30fee5db9fb1899f381ca4249.tar.bz2 |
ivtv: Probe more I2C addresses for IR devices
From: Jean Delvare <khali@linux-fr.org>
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 'linux/drivers/media/video/ivtv/ivtv-i2c.c')
-rw-r--r-- | linux/drivers/media/video/ivtv/ivtv-i2c.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/linux/drivers/media/video/ivtv/ivtv-i2c.c b/linux/drivers/media/video/ivtv/ivtv-i2c.c index db3ac27da..0d18c2220 100644 --- a/linux/drivers/media/video/ivtv/ivtv-i2c.c +++ b/linux/drivers/media/video/ivtv/ivtv-i2c.c @@ -652,7 +652,12 @@ int init_ivtv_i2c(struct ivtv *itv) That's why we probe 0x1a (~0x34) first. CB */ const unsigned short addr_list[] = { - 0x1a, 0x18, 0x64, 0x30, + 0x1a, /* Hauppauge IR external */ + 0x18, /* Hauppauge IR internal */ + 0x71, /* Hauppauge IR (PVR150) */ + 0x64, /* Pixelview IR */ + 0x30, /* KNC ONE IR */ + 0x6b, /* Adaptec IR */ I2C_CLIENT_END }; |