diff options
author | Sergei Shtylyov <sshtylyov@ru.mvista.com> | 2011-06-15 21:10:37 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-07-01 14:31:05 -0700 |
commit | e9c23a255a33cf423336b7cba39b2b6dcc83a6bc (patch) | |
tree | 62e1233dd7dfab173b745530e2c3fba8e327ddba /include/linux/usb/gadget.h | |
parent | 199e7edbb1b32d237ade354fee24eef5e2cbeb18 (diff) | |
download | talos-op-linux-e9c23a255a33cf423336b7cba39b2b6dcc83a6bc.tar.gz talos-op-linux-e9c23a255a33cf423336b7cba39b2b6dcc83a6bc.zip |
usb: gadget: add missing #include's
When #include'd alone, <linux/usb/gadget.h>
causes a lot of compilation errors and warnings
-- all because it relies on the including code to
bring in the necessary #include's instead of
doing this itself.
Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/usb/gadget.h')
-rw-r--r-- | include/linux/usb/gadget.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/usb/gadget.h b/include/linux/usb/gadget.h index e22ce7e5a444..afb67d997f0c 100644 --- a/include/linux/usb/gadget.h +++ b/include/linux/usb/gadget.h @@ -15,7 +15,12 @@ #ifndef __LINUX_USB_GADGET_H #define __LINUX_USB_GADGET_H +#include <linux/device.h> +#include <linux/errno.h> +#include <linux/init.h> +#include <linux/list.h> #include <linux/slab.h> +#include <linux/types.h> #include <linux/usb/ch9.h> struct usb_ep; |