diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-09-23 00:23:10 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-10-20 23:06:07 -0400 |
commit | c72ba8e6ae7376d20e509a9a54a2dd45fb483fc2 (patch) | |
tree | 4f2b407b086309b411e7d7ea80c2a0a71ac604d9 /drivers/media/video/saa7134/saa7134-input.c | |
parent | 44243fc2ef99948bc9b046901880885616dd5e89 (diff) |
V4L/DVB: saa7134: get rid of I2C_HW_SAA7134
The only reason for keeping I2C_HW_SAA7134 is to allow setting a
per-device polling interval. Just move this info to the platform
data, allowing drivers to change it per device, where needed.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/saa7134/saa7134-input.c')
-rw-r--r-- | drivers/media/video/saa7134/saa7134-input.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/media/video/saa7134/saa7134-input.c b/drivers/media/video/saa7134/saa7134-input.c index 0b336ca6d55b..52a1ee5aefd0 100644 --- a/drivers/media/video/saa7134/saa7134-input.c +++ b/drivers/media/video/saa7134/saa7134-input.c | |||
@@ -959,6 +959,11 @@ void saa7134_probe_i2c_ir(struct saa7134_dev *dev) | |||
959 | dev->init_data.name = "MSI TV@nywhere Plus"; | 959 | dev->init_data.name = "MSI TV@nywhere Plus"; |
960 | dev->init_data.get_key = get_key_msi_tvanywhere_plus; | 960 | dev->init_data.get_key = get_key_msi_tvanywhere_plus; |
961 | dev->init_data.ir_codes = RC_MAP_MSI_TVANYWHERE_PLUS; | 961 | dev->init_data.ir_codes = RC_MAP_MSI_TVANYWHERE_PLUS; |
962 | /* | ||
963 | * MSI TV@nyware Plus requires more frequent polling | ||
964 | * otherwise it will miss some keypresses | ||
965 | */ | ||
966 | dev->init_data.polling_interval = 50; | ||
962 | info.addr = 0x30; | 967 | info.addr = 0x30; |
963 | /* MSI TV@nywhere Plus controller doesn't seem to | 968 | /* MSI TV@nywhere Plus controller doesn't seem to |
964 | respond to probes unless we read something from | 969 | respond to probes unless we read something from |