diff options
-rw-r--r-- | drivers/usb/gadget/Makefile | 2 | ||||
-rw-r--r-- | drivers/usb/gadget/gmidi.c | 15 |
2 files changed, 16 insertions, 1 deletions
diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile index 55f589131e38..c47204fc6733 100644 --- a/drivers/usb/gadget/Makefile +++ b/drivers/usb/gadget/Makefile | |||
@@ -27,7 +27,7 @@ C_UTILS = composite.o usbstring.o config.o epautoconf.o | |||
27 | g_zero-objs := zero.o | 27 | g_zero-objs := zero.o |
28 | g_ether-objs := ether.o u_ether.o f_subset.o f_ecm.o $(C_UTILS) | 28 | g_ether-objs := ether.o u_ether.o f_subset.o f_ecm.o $(C_UTILS) |
29 | g_serial-objs := serial.o | 29 | g_serial-objs := serial.o |
30 | g_midi-objs := gmidi.o usbstring.o config.o epautoconf.o | 30 | g_midi-objs := gmidi.o |
31 | gadgetfs-objs := inode.o | 31 | gadgetfs-objs := inode.o |
32 | g_file_storage-objs := file_storage.o usbstring.o config.o \ | 32 | g_file_storage-objs := file_storage.o usbstring.o config.o \ |
33 | epautoconf.o | 33 | epautoconf.o |
diff --git a/drivers/usb/gadget/gmidi.c b/drivers/usb/gadget/gmidi.c index ea8651e3da1a..6eee760410d6 100644 --- a/drivers/usb/gadget/gmidi.c +++ b/drivers/usb/gadget/gmidi.c | |||
@@ -35,6 +35,21 @@ | |||
35 | 35 | ||
36 | #include "gadget_chips.h" | 36 | #include "gadget_chips.h" |
37 | 37 | ||
38 | |||
39 | /* | ||
40 | * Kbuild is not very cooperative with respect to linking separately | ||
41 | * compiled library objects into one module. So for now we won't use | ||
42 | * separate compilation ... ensuring init/exit sections work to shrink | ||
43 | * the runtime footprint, and giving us at least some parts of what | ||
44 | * a "gcc --combine ... part1.c part2.c part3.c ... " build would. | ||
45 | */ | ||
46 | #include "usbstring.c" | ||
47 | #include "config.c" | ||
48 | #include "epautoconf.c" | ||
49 | |||
50 | /*-------------------------------------------------------------------------*/ | ||
51 | |||
52 | |||
38 | MODULE_AUTHOR("Ben Williamson"); | 53 | MODULE_AUTHOR("Ben Williamson"); |
39 | MODULE_LICENSE("GPL v2"); | 54 | MODULE_LICENSE("GPL v2"); |
40 | 55 | ||