diff options
author | Alexandre Pereira da Silva <aletes.xgr@gmail.com> | 2012-06-20 09:37:57 -0300 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-06-22 13:15:40 +0300 |
commit | d7dbdb5e5fe809aa3d4c33b33943c94321dfdd06 (patch) | |
tree | a97f30136c02b3f08d6678b355a13da85baf808f /drivers/usb | |
parent | dc8738d95bb45d20b2141f1fe3e1cafb05be09f9 (diff) |
usb: gadget: lpc32xx_udc: fix build error with debugfs enabled
If CONFIG_USB_GADGET_DEBUG_FILES is enabled, lpc32xx_udc breaks
compilation because of a missing include file.
Signed-off-by: Alexandre Pereira da Silva <aletes.xgr@gmail.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/gadget/lpc32xx_udc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/gadget/lpc32xx_udc.c b/drivers/usb/gadget/lpc32xx_udc.c index 262acfd53e32..2ab0388d93eb 100644 --- a/drivers/usb/gadget/lpc32xx_udc.c +++ b/drivers/usb/gadget/lpc32xx_udc.c @@ -61,6 +61,7 @@ #include <mach/irqs.h> #include <mach/board.h> #ifdef CONFIG_USB_GADGET_DEBUG_FILES +#include <linux/debugfs.h> #include <linux/seq_file.h> #endif |