diff options
author | Alain Kalker <miki@dds.nl> | 2008-11-17 15:20:38 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-29 14:53:36 -0500 |
commit | 0537156f6ca44193f70e91b636a25724aaa1e53b (patch) | |
tree | e0bd99f300cdad9c033310cce52dd793452f0a47 /drivers/media/dvb/dvb-usb/af9015.c | |
parent | 308bb52c192cc1bad3c90c82dbd90e7fff176caa (diff) |
V4L/DVB (9665): af9015: Add support for the Digittrade DVB-T USB Stick remote
Adds support for the Digittrade DVB-T USB Stick remote.
As the Digittrade USB stick identifies itself as a generic Afatech AF9015
device, the remote cannot be autodetected. To enable it, add the following
to /etc/modprobe.d/dvb-usb-af9015 or /etc/modprobe.conf:
options dvb-usb-af9015 remote=4
Signed-off-by: Alain Kalker <miki@dds.nl>
Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/dvb-usb/af9015.c')
-rw-r--r-- | drivers/media/dvb/dvb-usb/af9015.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/media/dvb/dvb-usb/af9015.c b/drivers/media/dvb/dvb-usb/af9015.c index 6076147b9cd4..2677f20daa9b 100644 --- a/drivers/media/dvb/dvb-usb/af9015.c +++ b/drivers/media/dvb/dvb-usb/af9015.c | |||
@@ -733,6 +733,16 @@ static int af9015_read_config(struct usb_device *udev) | |||
733 | af9015_config.ir_table_size = | 733 | af9015_config.ir_table_size = |
734 | ARRAY_SIZE(af9015_ir_table_mygictv); | 734 | ARRAY_SIZE(af9015_ir_table_mygictv); |
735 | break; | 735 | break; |
736 | case AF9015_REMOTE_DIGITTRADE_DVB_T: | ||
737 | af9015_properties[i].rc_key_map = | ||
738 | af9015_rc_keys_digittrade; | ||
739 | af9015_properties[i].rc_key_map_size = | ||
740 | ARRAY_SIZE(af9015_rc_keys_digittrade); | ||
741 | af9015_config.ir_table = | ||
742 | af9015_ir_table_digittrade; | ||
743 | af9015_config.ir_table_size = | ||
744 | ARRAY_SIZE(af9015_ir_table_digittrade); | ||
745 | break; | ||
736 | } | 746 | } |
737 | } else { | 747 | } else { |
738 | switch (udev->descriptor.idVendor) { | 748 | switch (udev->descriptor.idVendor) { |