From: Sergei Shtylyov Date: Wed, 15 Jun 2011 18:10:37 +0000 (+0300) Subject: usb: gadget: add missing #include's X-Git-Tag: v3.1-rc1~234^2~57 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=e9c23a255a33cf423336b7cba39b2b6dcc83a6bc;p=~emulex%2Finfiniband.git usb: gadget: add missing #include's When #include'd alone, 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 Signed-off-by: Felipe Balbi Signed-off-by: Greg Kroah-Hartman --- diff --git a/include/linux/usb/gadget.h b/include/linux/usb/gadget.h index e22ce7e5a44..afb67d997f0 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 +#include +#include +#include #include +#include #include struct usb_ep;