diff options
Diffstat (limited to 'drivers/usb/gadget/gmidi.c')
-rw-r--r-- | drivers/usb/gadget/gmidi.c | 15 |
1 files changed, 15 insertions, 0 deletions
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 | ||