diff options
author | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2013-03-29 20:46:17 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-03-29 23:45:44 -0400 |
commit | 3c37bb685d8d668f00102502e753cccc426cc954 (patch) | |
tree | 3ae5222aba5323c906bf684ec50a35705c458106 /drivers/usb/chipidea/debug.c | |
parent | 4f48203881ce947a0cbd8ae7b1a1a1b04aaa3766 (diff) |
usb: chipidea: drop redundant includes
debug.c is carrying a lot of includes that aren't needed there, although
they implicitly include the ones that are actually needed. Replace the
former with the latter.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/chipidea/debug.c')
-rw-r--r-- | drivers/usb/chipidea/debug.c | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/drivers/usb/chipidea/debug.c b/drivers/usb/chipidea/debug.c index a62c4a47d52c..e6cc45ebb33d 100644 --- a/drivers/usb/chipidea/debug.c +++ b/drivers/usb/chipidea/debug.c | |||
@@ -1,20 +1,9 @@ | |||
1 | #include <linux/delay.h> | ||
2 | #include <linux/device.h> | ||
3 | #include <linux/dmapool.h> | ||
4 | #include <linux/dma-mapping.h> | ||
5 | #include <linux/init.h> | ||
6 | #include <linux/platform_device.h> | ||
7 | #include <linux/module.h> | ||
8 | #include <linux/interrupt.h> | ||
9 | #include <linux/io.h> | ||
10 | #include <linux/irq.h> | ||
11 | #include <linux/kernel.h> | 1 | #include <linux/kernel.h> |
12 | #include <linux/slab.h> | 2 | #include <linux/device.h> |
13 | #include <linux/pm_runtime.h> | 3 | #include <linux/types.h> |
4 | #include <linux/spinlock.h> | ||
14 | #include <linux/usb/ch9.h> | 5 | #include <linux/usb/ch9.h> |
15 | #include <linux/usb/gadget.h> | 6 | #include <linux/usb/gadget.h> |
16 | #include <linux/usb/otg.h> | ||
17 | #include <linux/usb/chipidea.h> | ||
18 | 7 | ||
19 | #include "ci.h" | 8 | #include "ci.h" |
20 | #include "udc.h" | 9 | #include "udc.h" |