summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2011-06-28 14:36:19 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2011-06-28 14:36:19 (GMT)
commitacd53d8f5846b4daf5e758fd08b1b290a721f0c0 (patch)
tree8f478dd03d9a716488ff7a3fa80494737cd76b7c
parentd3fa2b40e52884ac4024833c4c5f7da9d6a6a5b7 (diff)
downloadAF903x_SRC-acd53d8f5846b4daf5e758fd08b1b290a721f0c0.zip
AF903x_SRC-acd53d8f5846b4daf5e758fd08b1b290a721f0c0.tar.gz
AF903x_SRC-acd53d8f5846b4daf5e758fd08b1b290a721f0c0.tar.bz2
Add Asus U3100Mini_Plus support
-rw-r--r--src/af903x-devices.c28
1 files changed, 19 insertions, 9 deletions
diff --git a/src/af903x-devices.c b/src/af903x-devices.c
index 99f5c9e..c8691cd 100644
--- a/src/af903x-devices.c
+++ b/src/af903x-devices.c
@@ -127,6 +127,7 @@ struct usb_device_id af903x_usb_id_table[] = {
{ USB_DEVICE(0x15A4,0x1002) },
{ USB_DEVICE(0x15A4,0x1003) },
{ USB_DEVICE(0x15A4,0x9035) },
+ { USB_DEVICE(USB_VID_ASUS, USB_PID_ASUS_U3100MINI_PLUS) },
{ 0}, /* Terminating entry */
};
MODULE_DEVICE_TABLE(usb, af903x_usb_id_table);
@@ -198,16 +199,25 @@ struct dvb_usb_device_properties af903x_properties[] = {
},
},
#endif
- .num_device_descs =1,
+ .num_device_descs = 2,
.devices = {
- { "ITEtech USB2.0 DVB-T Recevier",
- { &af903x_usb_id_table[0], &af903x_usb_id_table[1],&af903x_usb_id_table[2],
- &af903x_usb_id_table[3], &af903x_usb_id_table[4], NULL},
- { NULL },
- },
- {NULL},
-
- }
+ {"ITEtech USB2.0 DVB-T Receiver",
+ {&af903x_usb_id_table[0],
+ &af903x_usb_id_table[1],
+ &af903x_usb_id_table[2],
+ &af903x_usb_id_table[3],
+ &af903x_usb_id_table[4],
+ NULL},
+ {NULL},
+ },
+ {"Asus U3100MINI_PLUS/T/RC Receiver",
+ {&af903x_usb_id_table[5],
+ NULL},
+ {NULL},
+ }, {
+ NULL
+ },
+ }
}
};