From 37683e1c034757913d643b13fd30cacc820e3348 Mon Sep 17 00:00:00 2001 From: Anand Gadiyar Date: Fri, 16 Jan 2009 00:18:14 +0530 Subject: [PATCH] Fix compile error in usb-ehci.c Fix this compile error CC arch/arm/mach-omap2/usb-ehci.o arch/arm/mach-omap2/usb-ehci.c:39: error: 'INT_34XX_EHCI_IRQ' undeclared here (not in a function) make[1]: *** [arch/arm/mach-omap2/usb-ehci.o] Error 1 make: *** [arch/arm/mach-omap2] Error 2 Signed-off-by: Anand Gadiyar Signed-off-by: Tony Lindgren --- arch/arm/mach-omap2/usb-ehci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-omap2/usb-ehci.c b/arch/arm/mach-omap2/usb-ehci.c index 489439ddb0d..6af0b025dca 100644 --- a/arch/arm/mach-omap2/usb-ehci.c +++ b/arch/arm/mach-omap2/usb-ehci.c @@ -25,6 +25,7 @@ #include #include +#include #include #include -- 2.41.0