usbtest.c (9bbdf1e0afe771ca7650f9f476769310bee9d8f3) usbtest.c (33b9e16243fd69493be3ddda7be73226c8be586a)
1#include <linux/kernel.h>
2#include <linux/errno.h>
3#include <linux/init.h>
4#include <linux/slab.h>
5#include <linux/mm.h>
6#include <linux/module.h>
7#include <linux/moduleparam.h>
8#include <linux/scatterlist.h>

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

2092/* we can use any device to test control traffic */
2093static struct usbtest_info generic_info = {
2094 .name = "Generic USB device",
2095 .alt = -1,
2096};
2097#endif
2098
2099
1#include <linux/kernel.h>
2#include <linux/errno.h>
3#include <linux/init.h>
4#include <linux/slab.h>
5#include <linux/mm.h>
6#include <linux/module.h>
7#include <linux/moduleparam.h>
8#include <linux/scatterlist.h>

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

2092/* we can use any device to test control traffic */
2093static struct usbtest_info generic_info = {
2094 .name = "Generic USB device",
2095 .alt = -1,
2096};
2097#endif
2098
2099
2100static struct usb_device_id id_table [] = {
2100static const struct usb_device_id id_table[] = {
2101
2102 /*-------------------------------------------------------------*/
2103
2104 /* EZ-USB devices which download firmware to replace (or in our
2105 * case augment) the default device implementation.
2106 */
2107
2108 /* generic EZ-USB FX controller */

--- 96 unchanged lines hidden ---
2101
2102 /*-------------------------------------------------------------*/
2103
2104 /* EZ-USB devices which download firmware to replace (or in our
2105 * case augment) the default device implementation.
2106 */
2107
2108 /* generic EZ-USB FX controller */

--- 96 unchanged lines hidden ---