diff options
author | Sebastian Andrzej Siewior <sebastian@breakpoint.cc> | 2012-08-28 16:37:13 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-09-05 20:21:36 -0400 |
commit | f61870ee6f8cc77a844e22f26c58028078df7167 (patch) | |
tree | aa7add2eb8a772803d6a7d787162663521f56f8b /drivers/usb/storage/isd200.c | |
parent | 68a5059ecf82cc9d52a86fb523584b4d485f1bbe (diff) |
usb: remove libusual
The "Low Performance USB Block driver" has been removed which a user of
libusual. Now we have only the usb-storage driver as the only driver in
tree. This makes libusual needless.
This patch removes libusal, fixes up all users. The usual-table is now
linked into usb-storage.
usb_usual.h remains in public include directory because some staging
users seem to need it.
Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/storage/isd200.c')
-rw-r--r-- | drivers/usb/storage/isd200.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/usb/storage/isd200.c b/drivers/usb/storage/isd200.c index 31fa24e7e68a..ecea47877364 100644 --- a/drivers/usb/storage/isd200.c +++ b/drivers/usb/storage/isd200.c | |||
@@ -74,7 +74,7 @@ static int isd200_Initialization(struct us_data *us); | |||
74 | vendorName, productName, useProtocol, useTransport, \ | 74 | vendorName, productName, useProtocol, useTransport, \ |
75 | initFunction, flags) \ | 75 | initFunction, flags) \ |
76 | { USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \ | 76 | { USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \ |
77 | .driver_info = (flags)|(USB_US_TYPE_STOR<<24) } | 77 | .driver_info = (flags) } |
78 | 78 | ||
79 | static struct usb_device_id isd200_usb_ids[] = { | 79 | static struct usb_device_id isd200_usb_ids[] = { |
80 | # include "unusual_isd200.h" | 80 | # include "unusual_isd200.h" |
@@ -83,7 +83,6 @@ static struct usb_device_id isd200_usb_ids[] = { | |||
83 | MODULE_DEVICE_TABLE(usb, isd200_usb_ids); | 83 | MODULE_DEVICE_TABLE(usb, isd200_usb_ids); |
84 | 84 | ||
85 | #undef UNUSUAL_DEV | 85 | #undef UNUSUAL_DEV |
86 | #undef USUAL_DEV | ||
87 | 86 | ||
88 | /* | 87 | /* |
89 | * The flags table | 88 | * The flags table |
@@ -105,8 +104,6 @@ static struct us_unusual_dev isd200_unusual_dev_list[] = { | |||
105 | }; | 104 | }; |
106 | 105 | ||
107 | #undef UNUSUAL_DEV | 106 | #undef UNUSUAL_DEV |
108 | #undef USUAL_DEV | ||
109 | |||
110 | 107 | ||
111 | /* Timeout defines (in Seconds) */ | 108 | /* Timeout defines (in Seconds) */ |
112 | 109 | ||