diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2006-11-29 19:57:24 -0500 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2006-11-29 19:57:24 -0500 |
commit | 8e0d44f9e05b60c1c0c050132cc6af9d09e6206e (patch) | |
tree | ef1d43390d650d4e695f367660345e8680ddc0c3 /linux/drivers/media/video/ir-kbd-i2c.c | |
parent | ba99ed7094dcba2a9d3a5af35e2a38c11a298e98 (diff) | |
download | mediapointer-dvb-s2-8e0d44f9e05b60c1c0c050132cc6af9d09e6206e.tar.gz mediapointer-dvb-s2-8e0d44f9e05b60c1c0c050132cc6af9d09e6206e.tar.bz2 |
saa7134: add support for remote control of Hauppauge HVR1110
From: Thomas Genty <tomlohave@gmail.com>
This patch adds support for the remote control bundled with the
Hauppauge HVR1110
Signed-off-by: Thomas Genty <tomlohave@gmail.com>
Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/video/ir-kbd-i2c.c')
-rw-r--r-- | linux/drivers/media/video/ir-kbd-i2c.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linux/drivers/media/video/ir-kbd-i2c.c b/linux/drivers/media/video/ir-kbd-i2c.c index 9ac3e1d9d..a5a0fa83e 100644 --- a/linux/drivers/media/video/ir-kbd-i2c.c +++ b/linux/drivers/media/video/ir-kbd-i2c.c @@ -363,6 +363,7 @@ static int ir_attach(struct i2c_adapter *adap, int addr, break; case 0x7a: case 0x47: + case 0x71: /* Handled by saa7134-input */ name = "SAA713x remote"; ir_type = IR_TYPE_OTHER; @@ -457,7 +458,7 @@ static int ir_probe(struct i2c_adapter *adap) */ static const int probe_bttv[] = { 0x1a, 0x18, 0x4b, 0x64, 0x30, -1}; - static const int probe_saa7134[] = { 0x7a, 0x47, -1 }; + static const int probe_saa7134[] = { 0x7a, 0x47, 0x71, -1 }; static const int probe_em28XX[] = { 0x30, 0x47, -1 }; const int *probe = NULL; struct i2c_client c; |