diff options
Diffstat (limited to 'drivers/usb/storage/libusual.c')
| -rw-r--r-- | drivers/usb/storage/libusual.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/usb/storage/libusual.c b/drivers/usb/storage/libusual.c index d617e8ae6b00..f970b27ba308 100644 --- a/drivers/usb/storage/libusual.c +++ b/drivers/usb/storage/libusual.c | |||
| @@ -46,6 +46,12 @@ static int usu_probe_thread(void *arg); | |||
| 46 | { USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin,bcdDeviceMax), \ | 46 | { USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin,bcdDeviceMax), \ |
| 47 | .driver_info = (flags)|(USB_US_TYPE_STOR<<24) } | 47 | .driver_info = (flags)|(USB_US_TYPE_STOR<<24) } |
| 48 | 48 | ||
| 49 | #define COMPLIANT_DEV(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax, \ | ||
| 50 | vendorName, productName, useProtocol, useTransport, \ | ||
| 51 | initFunction, flags) \ | ||
| 52 | { USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \ | ||
| 53 | .driver_info = (flags) } | ||
| 54 | |||
| 49 | #define USUAL_DEV(useProto, useTrans, useType) \ | 55 | #define USUAL_DEV(useProto, useTrans, useType) \ |
| 50 | { USB_INTERFACE_INFO(USB_CLASS_MASS_STORAGE, useProto, useTrans), \ | 56 | { USB_INTERFACE_INFO(USB_CLASS_MASS_STORAGE, useProto, useTrans), \ |
| 51 | .driver_info = ((useType)<<24) } | 57 | .driver_info = ((useType)<<24) } |
| @@ -57,6 +63,7 @@ struct usb_device_id storage_usb_ids [] = { | |||
| 57 | 63 | ||
| 58 | #undef USUAL_DEV | 64 | #undef USUAL_DEV |
| 59 | #undef UNUSUAL_DEV | 65 | #undef UNUSUAL_DEV |
| 66 | #undef COMPLIANT_DEV | ||
| 60 | 67 | ||
| 61 | MODULE_DEVICE_TABLE(usb, storage_usb_ids); | 68 | MODULE_DEVICE_TABLE(usb, storage_usb_ids); |
| 62 | EXPORT_SYMBOL_GPL(storage_usb_ids); | 69 | EXPORT_SYMBOL_GPL(storage_usb_ids); |
