diff options
author | Sebastian Andrzej Siewior <bigeasy@linutronix.de> | 2012-09-06 14:11:27 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-09-10 09:13:03 -0400 |
commit | 721e2e91945bc2520d57d795dfe1b502ecec567c (patch) | |
tree | 367b0e0de9fabd165fdae6887902c3ae72a81bef /drivers/usb/gadget/ncm.c | |
parent | cc2683c318a5bf192b75cd5c343b51009db0cf6c (diff) |
usb: gadget: libcomposite: move composite.c into libcomposite
This moves composite.c into libcomposite and updates all gadgets.
Finally!
Acked-by: Michal Nazarewicz <mina86@mina86.com>
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/ncm.c')
-rw-r--r-- | drivers/usb/gadget/ncm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/gadget/ncm.c b/drivers/usb/gadget/ncm.c index 343f3d364ef8..b21ec269b8f5 100644 --- a/drivers/usb/gadget/ncm.c +++ b/drivers/usb/gadget/ncm.c | |||
@@ -20,6 +20,8 @@ | |||
20 | /* #define VERBOSE_DEBUG */ | 20 | /* #define VERBOSE_DEBUG */ |
21 | 21 | ||
22 | #include <linux/kernel.h> | 22 | #include <linux/kernel.h> |
23 | #include <linux/module.h> | ||
24 | #include <linux/usb/composite.h> | ||
23 | 25 | ||
24 | #include "u_ether.h" | 26 | #include "u_ether.h" |
25 | 27 | ||
@@ -34,8 +36,6 @@ | |||
34 | * the runtime footprint, and giving us at least some parts of what | 36 | * the runtime footprint, and giving us at least some parts of what |
35 | * a "gcc --combine ... part1.c part2.c part3.c ... " build would. | 37 | * a "gcc --combine ... part1.c part2.c part3.c ... " build would. |
36 | */ | 38 | */ |
37 | #include "composite.c" | ||
38 | |||
39 | #include "f_ncm.c" | 39 | #include "f_ncm.c" |
40 | #include "u_ether.c" | 40 | #include "u_ether.c" |
41 | 41 | ||