onetouch.c (9a64e8e0ace51b309fdcff4b4754b3649250382a) | onetouch.c (f61870ee6f8cc77a844e22f26c58028078df7167) |
---|---|
1/* 2 * Support for the Maxtor OneTouch USB hard drive's button 3 * 4 * Current development and maintenance by: 5 * Copyright (c) 2005 Nick Sillik <n.sillik@temple.edu> 6 * 7 * Initial work by: 8 * Copyright (c) 2003 Erik Thyren <erth7411@student.uu.se> --- 53 unchanged lines hidden (view full) --- 62 63/* 64 * The table of devices 65 */ 66#define UNUSUAL_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \ 67 vendorName, productName, useProtocol, useTransport, \ 68 initFunction, flags) \ 69{ USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \ | 1/* 2 * Support for the Maxtor OneTouch USB hard drive's button 3 * 4 * Current development and maintenance by: 5 * Copyright (c) 2005 Nick Sillik <n.sillik@temple.edu> 6 * 7 * Initial work by: 8 * Copyright (c) 2003 Erik Thyren <erth7411@student.uu.se> --- 53 unchanged lines hidden (view full) --- 62 63/* 64 * The table of devices 65 */ 66#define UNUSUAL_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \ 67 vendorName, productName, useProtocol, useTransport, \ 68 initFunction, flags) \ 69{ USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \ |
70 .driver_info = (flags)|(USB_US_TYPE_STOR<<24) } | 70 .driver_info = (flags) } |
71 72static struct usb_device_id onetouch_usb_ids[] = { 73# include "unusual_onetouch.h" 74 { } /* Terminating entry */ 75}; 76MODULE_DEVICE_TABLE(usb, onetouch_usb_ids); 77 78#undef UNUSUAL_DEV --- 240 unchanged lines hidden --- | 71 72static struct usb_device_id onetouch_usb_ids[] = { 73# include "unusual_onetouch.h" 74 { } /* Terminating entry */ 75}; 76MODULE_DEVICE_TABLE(usb, onetouch_usb_ids); 77 78#undef UNUSUAL_DEV --- 240 unchanged lines hidden --- |