iowarrior.c (6548698f929814375fa5d62ae1db96959b0418c1) iowarrior.c (33b9e16243fd69493be3ddda7be73226c8be586a)
1/*
2 * Native support for the I/O-Warrior USB devices
3 *
4 * Copyright (c) 2003-2005 Code Mercenaries GmbH
5 * written by Christian Lucht <lucht@codemercs.com>
6 *
7 * based on
8

--- 125 unchanged lines hidden (view full) ---

134 intf->cur_altsetting->desc.bInterfaceNumber, buf,
135 size, HZ);
136}
137
138/*---------------------*/
139/* driver registration */
140/*---------------------*/
141/* table of devices that work with this driver */
1/*
2 * Native support for the I/O-Warrior USB devices
3 *
4 * Copyright (c) 2003-2005 Code Mercenaries GmbH
5 * written by Christian Lucht <lucht@codemercs.com>
6 *
7 * based on
8

--- 125 unchanged lines hidden (view full) ---

134 intf->cur_altsetting->desc.bInterfaceNumber, buf,
135 size, HZ);
136}
137
138/*---------------------*/
139/* driver registration */
140/*---------------------*/
141/* table of devices that work with this driver */
142static struct usb_device_id iowarrior_ids[] = {
142static const struct usb_device_id iowarrior_ids[] = {
143 {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW40)},
144 {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW24)},
145 {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOWPV1)},
146 {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOWPV2)},
147 {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW56)},
148 {} /* Terminating entry */
149};
150MODULE_DEVICE_TABLE(usb, iowarrior_ids);

--- 784 unchanged lines hidden ---
143 {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW40)},
144 {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW24)},
145 {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOWPV1)},
146 {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOWPV2)},
147 {USB_DEVICE(USB_VENDOR_ID_CODEMERCS, USB_DEVICE_ID_CODEMERCS_IOW56)},
148 {} /* Terminating entry */
149};
150MODULE_DEVICE_TABLE(usb, iowarrior_ids);

--- 784 unchanged lines hidden ---