diff options
author | Michal Nazarewicz <m.nazarewicz@samsung.com> | 2009-11-09 08:15:20 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-12-11 14:55:22 -0500 |
commit | d23b0f08d18fc42f26f6a0776c6d827eb35143a9 (patch) | |
tree | e6557975165865e43984045279e262d62b939dde /drivers/usb/gadget/Makefile | |
parent | 6648f29d3be2972a74ef8e29aa5d425ab4f1fc48 (diff) |
USB: g_mass_storage: Mass Storage Function created
The f_mass_storage.c has been changed into a composite function.
mass_storage.c file has been introduced which defines a
g_mass_storage gadget based on composite framework.
Signed-off-by: Michal Nazarewicz <m.nazarewicz@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/gadget/Makefile')
-rw-r--r-- | drivers/usb/gadget/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile index 9d7b87c52e9f..025ba2ed7907 100644 --- a/drivers/usb/gadget/Makefile +++ b/drivers/usb/gadget/Makefile | |||
@@ -39,6 +39,7 @@ g_serial-objs := serial.o | |||
39 | g_midi-objs := gmidi.o | 39 | g_midi-objs := gmidi.o |
40 | gadgetfs-objs := inode.o | 40 | gadgetfs-objs := inode.o |
41 | g_file_storage-objs := file_storage.o | 41 | g_file_storage-objs := file_storage.o |
42 | g_mass_storage-objs := mass_storage.o | ||
42 | g_printer-objs := printer.o | 43 | g_printer-objs := printer.o |
43 | g_cdc-objs := cdc2.o | 44 | g_cdc-objs := cdc2.o |
44 | 45 | ||
@@ -47,6 +48,7 @@ obj-$(CONFIG_USB_AUDIO) += g_audio.o | |||
47 | obj-$(CONFIG_USB_ETH) += g_ether.o | 48 | obj-$(CONFIG_USB_ETH) += g_ether.o |
48 | obj-$(CONFIG_USB_GADGETFS) += gadgetfs.o | 49 | obj-$(CONFIG_USB_GADGETFS) += gadgetfs.o |
49 | obj-$(CONFIG_USB_FILE_STORAGE) += g_file_storage.o | 50 | obj-$(CONFIG_USB_FILE_STORAGE) += g_file_storage.o |
51 | obj-$(CONFIG_USB_MASS_STORAGE) += g_mass_storage.o | ||
50 | obj-$(CONFIG_USB_G_SERIAL) += g_serial.o | 52 | obj-$(CONFIG_USB_G_SERIAL) += g_serial.o |
51 | obj-$(CONFIG_USB_G_PRINTER) += g_printer.o | 53 | obj-$(CONFIG_USB_G_PRINTER) += g_printer.o |
52 | obj-$(CONFIG_USB_MIDI_GADGET) += g_midi.o | 54 | obj-$(CONFIG_USB_MIDI_GADGET) += g_midi.o |