diff options
author | Alan Stern <stern@rowland.harvard.edu> | 2009-02-12 14:48:19 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-03-24 19:20:34 -0400 |
commit | a9fb6d05d59c9e118ad8c355adfdf88c970c61bc (patch) | |
tree | ef8a9767fe13084084e036b7a1192a714464b1aa /drivers/usb/storage/Makefile | |
parent | 2cbbf3576aa9eae9a92f2669f38a453b6cb8e956 (diff) |
usb-storage: make jumpshot a separate module
This patch (as1214) converts usb-storage's jumpshot subdriver into a
separate module.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/storage/Makefile')
-rw-r--r-- | drivers/usb/storage/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/storage/Makefile b/drivers/usb/storage/Makefile index 0f78bd680f0f..7b9d53563d34 100644 --- a/drivers/usb/storage/Makefile +++ b/drivers/usb/storage/Makefile | |||
@@ -10,7 +10,6 @@ EXTRA_CFLAGS := -Idrivers/scsi | |||
10 | obj-$(CONFIG_USB_STORAGE) += usb-storage.o | 10 | obj-$(CONFIG_USB_STORAGE) += usb-storage.o |
11 | 11 | ||
12 | usb-storage-obj-$(CONFIG_USB_STORAGE_DEBUG) += debug.o | 12 | usb-storage-obj-$(CONFIG_USB_STORAGE_DEBUG) += debug.o |
13 | usb-storage-obj-$(CONFIG_USB_STORAGE_JUMPSHOT) += jumpshot.o | ||
14 | usb-storage-obj-$(CONFIG_USB_STORAGE_ALAUDA) += alauda.o | 13 | usb-storage-obj-$(CONFIG_USB_STORAGE_ALAUDA) += alauda.o |
15 | usb-storage-obj-$(CONFIG_USB_STORAGE_ONETOUCH) += onetouch.o | 14 | usb-storage-obj-$(CONFIG_USB_STORAGE_ONETOUCH) += onetouch.o |
16 | usb-storage-obj-$(CONFIG_USB_STORAGE_KARMA) += karma.o | 15 | usb-storage-obj-$(CONFIG_USB_STORAGE_KARMA) += karma.o |
@@ -28,6 +27,7 @@ obj-$(CONFIG_USB_STORAGE_CYPRESS_ATACB) += ums-cypress.o | |||
28 | obj-$(CONFIG_USB_STORAGE_DATAFAB) += ums-datafab.o | 27 | obj-$(CONFIG_USB_STORAGE_DATAFAB) += ums-datafab.o |
29 | obj-$(CONFIG_USB_STORAGE_FREECOM) += ums-freecom.o | 28 | obj-$(CONFIG_USB_STORAGE_FREECOM) += ums-freecom.o |
30 | obj-$(CONFIG_USB_STORAGE_ISD200) += ums-isd200.o | 29 | obj-$(CONFIG_USB_STORAGE_ISD200) += ums-isd200.o |
30 | obj-$(CONFIG_USB_STORAGE_JUMPSHOT) += ums-jumpshot.o | ||
31 | obj-$(CONFIG_USB_STORAGE_SDDR09) += ums-sddr09.o | 31 | obj-$(CONFIG_USB_STORAGE_SDDR09) += ums-sddr09.o |
32 | obj-$(CONFIG_USB_STORAGE_SDDR55) += ums-sddr55.o | 32 | obj-$(CONFIG_USB_STORAGE_SDDR55) += ums-sddr55.o |
33 | obj-$(CONFIG_USB_STORAGE_USBAT) += ums-usbat.o | 33 | obj-$(CONFIG_USB_STORAGE_USBAT) += ums-usbat.o |
@@ -36,6 +36,7 @@ ums-cypress-objs := cypress_atacb.o | |||
36 | ums-datafab-objs := datafab.o | 36 | ums-datafab-objs := datafab.o |
37 | ums-freecom-objs := freecom.o | 37 | ums-freecom-objs := freecom.o |
38 | ums-isd200-objs := isd200.o | 38 | ums-isd200-objs := isd200.o |
39 | ums-jumpshot-objs := jumpshot.o | ||
39 | ums-sddr09-objs := sddr09.o | 40 | ums-sddr09-objs := sddr09.o |
40 | ums-sddr55-objs := sddr55.o | 41 | ums-sddr55-objs := sddr55.o |
41 | ums-usbat-objs := shuttle_usbat.o | 42 | ums-usbat-objs := shuttle_usbat.o |