blob: d2a01b50af0daf7ce7ab7d17686b845574c291a1 [file] [log] [blame]
Patrick Boettcherfb41f5a2005-07-07 17:58:23 -07001/* DVB USB library compliant Linux driver for the WideView/ Yakumo/ Hama/
Rasmus Rohded3c35ac2007-07-21 15:37:35 -03002 * Typhoon/ Yuan/ Miglia DVB-T USB2.0 receiver.
Johannes Stezenbach776338e2005-06-23 22:02:35 -07003 *
Patrick Boettcher99e44da2016-01-24 12:56:58 -02004 * Copyright (C) 2004-5 Patrick Boettcher (patrick.boettcher@posteo.de)
Johannes Stezenbach776338e2005-06-23 22:02:35 -07005 *
Patrick Boettcherd590f9c2005-07-07 17:58:33 -07006 * Thanks to Steve Chang from WideView for providing support for the WT-220U.
7 *
Johannes Stezenbach776338e2005-06-23 22:02:35 -07008 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the Free
10 * Software Foundation, version 2.
11 *
12 * see Documentation/dvb/README.dvb-usb for more information
13 */
14#include "dtt200u.h"
15
16/* debug */
17int dvb_usb_dtt200u_debug;
18module_param_named(debug,dvb_usb_dtt200u_debug, int, 0644);
19MODULE_PARM_DESC(debug, "set debugging level (1=info,xfer=2 (or-able))." DVB_USB_DEBUG_STATUS);
20
Janne Grunau78e92002008-04-09 19:13:13 -030021DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr);
22
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070023static int dtt200u_power_ctrl(struct dvb_usb_device *d, int onoff)
24{
25 u8 b = SET_INIT;
26
27 if (onoff)
28 dvb_usb_generic_write(d,&b,2);
29
30 return 0;
31}
32
Patrick Boettcher4d43e132006-09-30 06:53:48 -030033static int dtt200u_streaming_ctrl(struct dvb_usb_adapter *adap, int onoff)
Johannes Stezenbach776338e2005-06-23 22:02:35 -070034{
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070035 u8 b_streaming[2] = { SET_STREAMING, onoff };
Johannes Stezenbach776338e2005-06-23 22:02:35 -070036 u8 b_rst_pid = RESET_PID_FILTER;
37
Patrick Boettcher4d43e132006-09-30 06:53:48 -030038 dvb_usb_generic_write(adap->dev, b_streaming, 2);
Johannes Stezenbach776338e2005-06-23 22:02:35 -070039
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070040 if (onoff == 0)
Patrick Boettcher4d43e132006-09-30 06:53:48 -030041 dvb_usb_generic_write(adap->dev, &b_rst_pid, 1);
Johannes Stezenbach776338e2005-06-23 22:02:35 -070042 return 0;
43}
44
Patrick Boettcher4d43e132006-09-30 06:53:48 -030045static int dtt200u_pid_filter(struct dvb_usb_adapter *adap, int index, u16 pid, int onoff)
Johannes Stezenbach776338e2005-06-23 22:02:35 -070046{
47 u8 b_pid[4];
48 pid = onoff ? pid : 0;
49
50 b_pid[0] = SET_PID_FILTER;
51 b_pid[1] = index;
52 b_pid[2] = pid & 0xff;
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070053 b_pid[3] = (pid >> 8) & 0x1f;
Johannes Stezenbach776338e2005-06-23 22:02:35 -070054
Patrick Boettcher4d43e132006-09-30 06:53:48 -030055 return dvb_usb_generic_write(adap->dev, b_pid, 4);
Johannes Stezenbach776338e2005-06-23 22:02:35 -070056}
57
Jonathan McDowella4d020e2016-05-20 12:08:35 -030058static int dtt200u_rc_query(struct dvb_usb_device *d)
Johannes Stezenbach776338e2005-06-23 22:02:35 -070059{
Patrick Boettcherd590f9c2005-07-07 17:58:33 -070060 u8 key[5],cmd = GET_RC_CODE;
Jonathan McDowella4d020e2016-05-20 12:08:35 -030061 u32 scancode;
62
Johannes Stezenbach776338e2005-06-23 22:02:35 -070063 dvb_usb_generic_rw(d,&cmd,1,key,5,0);
Jonathan McDowella4d020e2016-05-20 12:08:35 -030064 if (key[0] == 1) {
Sean Young2ceeca02016-09-21 06:54:19 -030065 enum rc_type proto = RC_TYPE_NEC;
66
Jonathan McDowella4d020e2016-05-20 12:08:35 -030067 scancode = key[1];
68 if ((u8) ~key[1] != key[2]) {
69 /* Extended NEC */
70 scancode = scancode << 8;
71 scancode |= key[2];
Sean Young2ceeca02016-09-21 06:54:19 -030072 proto = RC_TYPE_NECX;
Jonathan McDowella4d020e2016-05-20 12:08:35 -030073 }
74 scancode = scancode << 8;
75 scancode |= key[3];
76
77 /* Check command checksum is ok */
78 if ((u8) ~key[3] == key[4])
Sean Young2ceeca02016-09-21 06:54:19 -030079 rc_keydown(d->rc_dev, proto, scancode, 0);
Jonathan McDowella4d020e2016-05-20 12:08:35 -030080 else
81 rc_keyup(d->rc_dev);
82 } else if (key[0] == 2) {
83 rc_repeat(d->rc_dev);
84 } else {
85 rc_keyup(d->rc_dev);
86 }
87
Johannes Stezenbach776338e2005-06-23 22:02:35 -070088 if (key[0] != 0)
Andy Shevchenko5bdb7872012-09-26 09:55:14 -030089 deb_info("key: %*ph\n", 5, key);
Jonathan McDowella4d020e2016-05-20 12:08:35 -030090
Johannes Stezenbach776338e2005-06-23 22:02:35 -070091 return 0;
92}
93
Patrick Boettcher4d43e132006-09-30 06:53:48 -030094static int dtt200u_frontend_attach(struct dvb_usb_adapter *adap)
Johannes Stezenbach776338e2005-06-23 22:02:35 -070095{
Michael Krufky77eed212011-09-06 09:31:57 -030096 adap->fe_adap[0].fe = dtt200u_fe_attach(adap->dev);
Johannes Stezenbach776338e2005-06-23 22:02:35 -070097 return 0;
98}
99
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300100static struct dvb_usb_device_properties dtt200u_properties;
101static struct dvb_usb_device_properties wt220u_fc_properties;
102static struct dvb_usb_device_properties wt220u_properties;
103static struct dvb_usb_device_properties wt220u_zl0353_properties;
Rasmus Rohded3c35ac2007-07-21 15:37:35 -0300104static struct dvb_usb_device_properties wt220u_miglia_properties;
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700105
106static int dtt200u_usb_probe(struct usb_interface *intf,
107 const struct usb_device_id *id)
108{
Janne Grunau78e92002008-04-09 19:13:13 -0300109 if (0 == dvb_usb_device_init(intf, &dtt200u_properties,
110 THIS_MODULE, NULL, adapter_nr) ||
111 0 == dvb_usb_device_init(intf, &wt220u_properties,
112 THIS_MODULE, NULL, adapter_nr) ||
113 0 == dvb_usb_device_init(intf, &wt220u_fc_properties,
114 THIS_MODULE, NULL, adapter_nr) ||
115 0 == dvb_usb_device_init(intf, &wt220u_zl0353_properties,
116 THIS_MODULE, NULL, adapter_nr) ||
117 0 == dvb_usb_device_init(intf, &wt220u_miglia_properties,
118 THIS_MODULE, NULL, adapter_nr))
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700119 return 0;
120
121 return -ENODEV;
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700122}
123
124static struct usb_device_id dtt200u_usb_table [] = {
Patrick Boettcher62703b92005-09-09 13:02:46 -0700125 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_DTT200U_COLD) },
126 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_DTT200U_WARM) },
127 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_COLD) },
128 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_WARM) },
Patrick Boettcherd46e6452006-03-28 16:15:05 -0300129 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_ZL0353_COLD) },
130 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_ZL0353_WARM) },
Alexander Tuschen19e22572006-07-16 15:03:17 -0300131 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_FC_COLD) },
132 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_FC_WARM) },
Jochen Issingded38d22006-08-19 16:03:21 -0300133 { USB_DEVICE(USB_VID_WIDEVIEW, USB_PID_WT220U_ZAP250_COLD) },
Rasmus Rohded3c35ac2007-07-21 15:37:35 -0300134 { USB_DEVICE(USB_VID_MIGLIA, USB_PID_WT220U_ZAP250_COLD) },
Patrick Boettcher62703b92005-09-09 13:02:46 -0700135 { 0 },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700136};
137MODULE_DEVICE_TABLE(usb, dtt200u_usb_table);
138
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300139static struct dvb_usb_device_properties dtt200u_properties = {
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700140 .usb_ctrl = CYPRESS_FX2,
141 .firmware = "dvb-usb-dtt200u-01.fw",
142
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300143 .num_adapters = 1,
144 .adapter = {
145 {
Michael Krufky77eed212011-09-06 09:31:57 -0300146 .num_frontends = 1,
147 .fe = {{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300148 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_NEED_PID_FILTERING,
149 .pid_filter_count = 15,
150
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700151 .streaming_ctrl = dtt200u_streaming_ctrl,
152 .pid_filter = dtt200u_pid_filter,
153 .frontend_attach = dtt200u_frontend_attach,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700154 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300155 .stream = {
156 .type = USB_BULK,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700157 .count = 7,
158 .endpoint = 0x02,
159 .u = {
160 .bulk = {
161 .buffersize = 4096,
162 }
163 }
164 },
Michael Krufky77eed212011-09-06 09:31:57 -0300165 }},
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300166 }
167 },
168 .power_ctrl = dtt200u_power_ctrl,
169
Jonathan McDowella4d020e2016-05-20 12:08:35 -0300170 .rc.core = {
Mauro Carvalho Chehabf72a27b2010-07-31 18:04:09 -0300171 .rc_interval = 300,
Jonathan McDowella4d020e2016-05-20 12:08:35 -0300172 .rc_codes = RC_MAP_DTT200U,
Mauro Carvalho Chehabf72a27b2010-07-31 18:04:09 -0300173 .rc_query = dtt200u_rc_query,
Jonathan McDowella4d020e2016-05-20 12:08:35 -0300174 .allowed_protos = RC_BIT_NEC,
Mauro Carvalho Chehabf72a27b2010-07-31 18:04:09 -0300175 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300176
177 .generic_bulk_ctrl_endpoint = 0x01,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700178
179 .num_device_descs = 1,
180 .devices = {
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700181 { .name = "WideView/Yuan/Yakumo/Hama/Typhoon DVB-T USB2.0 (WT-200U)",
Patrick Boettcherfb41f5a2005-07-07 17:58:23 -0700182 .cold_ids = { &dtt200u_usb_table[0], NULL },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700183 .warm_ids = { &dtt200u_usb_table[1], NULL },
184 },
Al Virodad08df2006-02-01 06:02:50 -0500185 { NULL },
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700186 }
187};
188
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300189static struct dvb_usb_device_properties wt220u_properties = {
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700190 .usb_ctrl = CYPRESS_FX2,
Patrick Boettcher6ce17c52006-01-09 15:25:45 -0200191 .firmware = "dvb-usb-wt220u-02.fw",
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700192
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300193 .num_adapters = 1,
194 .adapter = {
195 {
Michael Krufky77eed212011-09-06 09:31:57 -0300196 .num_frontends = 1,
197 .fe = {{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300198 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_NEED_PID_FILTERING,
199 .pid_filter_count = 15,
200
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700201 .streaming_ctrl = dtt200u_streaming_ctrl,
202 .pid_filter = dtt200u_pid_filter,
203 .frontend_attach = dtt200u_frontend_attach,
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700204 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300205 .stream = {
206 .type = USB_BULK,
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700207 .count = 7,
208 .endpoint = 0x02,
209 .u = {
210 .bulk = {
211 .buffersize = 4096,
212 }
213 }
214 },
Michael Krufky77eed212011-09-06 09:31:57 -0300215 }},
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300216 }
217 },
218 .power_ctrl = dtt200u_power_ctrl,
219
Jonathan McDowella4d020e2016-05-20 12:08:35 -0300220 .rc.core = {
Mauro Carvalho Chehabf72a27b2010-07-31 18:04:09 -0300221 .rc_interval = 300,
Jonathan McDowella4d020e2016-05-20 12:08:35 -0300222 .rc_codes = RC_MAP_DTT200U,
Mauro Carvalho Chehabf72a27b2010-07-31 18:04:09 -0300223 .rc_query = dtt200u_rc_query,
Jonathan McDowella4d020e2016-05-20 12:08:35 -0300224 .allowed_protos = RC_BIT_NEC,
Mauro Carvalho Chehabf72a27b2010-07-31 18:04:09 -0300225 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300226
227 .generic_bulk_ctrl_endpoint = 0x01,
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700228
229 .num_device_descs = 1,
230 .devices = {
Patrick Boettcher62703b92005-09-09 13:02:46 -0700231 { .name = "WideView WT-220U PenType Receiver (Typhoon/Freecom)",
Jochen Issingded38d22006-08-19 16:03:21 -0300232 .cold_ids = { &dtt200u_usb_table[2], &dtt200u_usb_table[8], NULL },
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700233 .warm_ids = { &dtt200u_usb_table[3], NULL },
234 },
Al Virodad08df2006-02-01 06:02:50 -0500235 { NULL },
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700236 }
237};
238
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300239static struct dvb_usb_device_properties wt220u_fc_properties = {
Alexander Tuschen19e22572006-07-16 15:03:17 -0300240 .usb_ctrl = CYPRESS_FX2,
241 .firmware = "dvb-usb-wt220u-fc03.fw",
242
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300243 .num_adapters = 1,
244 .adapter = {
245 {
Michael Krufky77eed212011-09-06 09:31:57 -0300246 .num_frontends = 1,
247 .fe = {{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300248 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_NEED_PID_FILTERING,
249 .pid_filter_count = 15,
250
Alexander Tuschen19e22572006-07-16 15:03:17 -0300251 .streaming_ctrl = dtt200u_streaming_ctrl,
252 .pid_filter = dtt200u_pid_filter,
253 .frontend_attach = dtt200u_frontend_attach,
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300254 /* parameter for the MPEG2-data transfer */
255 .stream = {
256 .type = USB_BULK,
257 .count = 7,
258 .endpoint = 0x06,
259 .u = {
260 .bulk = {
261 .buffersize = 4096,
262 }
263 }
264 },
Michael Krufky77eed212011-09-06 09:31:57 -0300265 }},
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300266 }
267 },
268 .power_ctrl = dtt200u_power_ctrl,
Alexander Tuschen19e22572006-07-16 15:03:17 -0300269
Jonathan McDowella4d020e2016-05-20 12:08:35 -0300270 .rc.core = {
Mauro Carvalho Chehabf72a27b2010-07-31 18:04:09 -0300271 .rc_interval = 300,
Jonathan McDowella4d020e2016-05-20 12:08:35 -0300272 .rc_codes = RC_MAP_DTT200U,
Mauro Carvalho Chehabf72a27b2010-07-31 18:04:09 -0300273 .rc_query = dtt200u_rc_query,
Jonathan McDowella4d020e2016-05-20 12:08:35 -0300274 .allowed_protos = RC_BIT_NEC,
Mauro Carvalho Chehabf72a27b2010-07-31 18:04:09 -0300275 },
Alexander Tuschen19e22572006-07-16 15:03:17 -0300276
277 .generic_bulk_ctrl_endpoint = 0x01,
278
Alexander Tuschen19e22572006-07-16 15:03:17 -0300279 .num_device_descs = 1,
280 .devices = {
281 { .name = "WideView WT-220U PenType Receiver (Typhoon/Freecom)",
282 .cold_ids = { &dtt200u_usb_table[6], NULL },
283 .warm_ids = { &dtt200u_usb_table[7], NULL },
284 },
285 { NULL },
286 }
287};
288
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300289static struct dvb_usb_device_properties wt220u_zl0353_properties = {
Patrick Boettcherd46e6452006-03-28 16:15:05 -0300290 .usb_ctrl = CYPRESS_FX2,
291 .firmware = "dvb-usb-wt220u-zl0353-01.fw",
292
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300293 .num_adapters = 1,
294 .adapter = {
295 {
Michael Krufky77eed212011-09-06 09:31:57 -0300296 .num_frontends = 1,
297 .fe = {{
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300298 .caps = DVB_USB_ADAP_HAS_PID_FILTER | DVB_USB_ADAP_NEED_PID_FILTERING,
299 .pid_filter_count = 15,
300
Patrick Boettcher01451e72006-10-13 11:34:46 -0300301 .streaming_ctrl = dtt200u_streaming_ctrl,
302 .pid_filter = dtt200u_pid_filter,
303 .frontend_attach = dtt200u_frontend_attach,
304 /* parameter for the MPEG2-data transfer */
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300305 .stream = {
306 .type = USB_BULK,
Patrick Boettcher01451e72006-10-13 11:34:46 -0300307 .count = 7,
308 .endpoint = 0x02,
309 .u = {
310 .bulk = {
311 .buffersize = 4096,
312 }
313 }
314 },
Michael Krufky77eed212011-09-06 09:31:57 -0300315 }},
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300316 }
317 },
318 .power_ctrl = dtt200u_power_ctrl,
319
Jonathan McDowella4d020e2016-05-20 12:08:35 -0300320 .rc.core = {
Mauro Carvalho Chehabf72a27b2010-07-31 18:04:09 -0300321 .rc_interval = 300,
Jonathan McDowella4d020e2016-05-20 12:08:35 -0300322 .rc_codes = RC_MAP_DTT200U,
Mauro Carvalho Chehabf72a27b2010-07-31 18:04:09 -0300323 .rc_query = dtt200u_rc_query,
Jonathan McDowella4d020e2016-05-20 12:08:35 -0300324 .allowed_protos = RC_BIT_NEC,
Mauro Carvalho Chehabf72a27b2010-07-31 18:04:09 -0300325 },
Patrick Boettcher4d43e132006-09-30 06:53:48 -0300326
327 .generic_bulk_ctrl_endpoint = 0x01,
Patrick Boettcherd46e6452006-03-28 16:15:05 -0300328
329 .num_device_descs = 1,
330 .devices = {
331 { .name = "WideView WT-220U PenType Receiver (based on ZL353)",
332 .cold_ids = { &dtt200u_usb_table[4], NULL },
333 .warm_ids = { &dtt200u_usb_table[5], NULL },
334 },
335 { NULL },
336 }
337};
338
Rasmus Rohded3c35ac2007-07-21 15:37:35 -0300339static struct dvb_usb_device_properties wt220u_miglia_properties = {
340 .usb_ctrl = CYPRESS_FX2,
341 .firmware = "dvb-usb-wt220u-miglia-01.fw",
342
343 .num_adapters = 1,
344 .generic_bulk_ctrl_endpoint = 0x01,
345
346 .num_device_descs = 1,
347 .devices = {
348 { .name = "WideView WT-220U PenType Receiver (Miglia)",
349 .cold_ids = { &dtt200u_usb_table[9], NULL },
350 /* This device turns into WT220U_ZL0353_WARM when fw
351 has been uploaded */
352 .warm_ids = { NULL },
353 },
354 { NULL },
355 }
356};
357
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700358/* usb specific object needed to register this driver with the usb subsystem */
359static struct usb_driver dtt200u_usb_driver = {
Patrick Boettcherd590f9c2005-07-07 17:58:33 -0700360 .name = "dvb_usb_dtt200u",
Patrick Boettcher62703b92005-09-09 13:02:46 -0700361 .probe = dtt200u_usb_probe,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700362 .disconnect = dvb_usb_device_exit,
Patrick Boettcher62703b92005-09-09 13:02:46 -0700363 .id_table = dtt200u_usb_table,
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700364};
365
Greg Kroah-Hartmanecb3b2b2011-11-18 09:46:12 -0800366module_usb_driver(dtt200u_usb_driver);
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700367
Patrick Boettcher99e44da2016-01-24 12:56:58 -0200368MODULE_AUTHOR("Patrick Boettcher <patrick.boettcher@posteo.de>");
Rasmus Rohded3c35ac2007-07-21 15:37:35 -0300369MODULE_DESCRIPTION("Driver for the WideView/Yakumo/Hama/Typhoon/Club3D/Miglia DVB-T USB2.0 devices");
Johannes Stezenbach776338e2005-06-23 22:02:35 -0700370MODULE_VERSION("1.0");
371MODULE_LICENSE("GPL");