diff options
author | Amit Kucheria <amit.kucheria@canonical.com> | 2010-06-09 13:53:05 +0300 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-06-09 13:53:05 +0300 |
commit | bfb01197589965663772e6388f2bdf452e25adf2 (patch) | |
tree | e279b2d00a501610f2e7ad922a03eb4157e5fc9c /arch/arm/mach-omap2/usb-ehci.c | |
parent | 7f1225bd6e62c54edfa0a2464648ad9e4efb1313 (diff) |
omap: fix build failure due to missing include dma-mapping.h
Fixes following error,
CC arch/arm/mach-omap2/usb-ehci.o
arch/arm/mach-omap2/usb-ehci.c:263: error: implicit declaration of function
'DMA_BIT_MASK'
arch/arm/mach-omap2/usb-ehci.c:263: error: initializer element is not constant
make[1]: *** [arch/arm/mach-omap2/usb-ehci.o] Error 1
Signed-off-by: Amit Kucheria <amit.kucheria@canonical.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/usb-ehci.c')
-rw-r--r-- | arch/arm/mach-omap2/usb-ehci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/usb-ehci.c b/arch/arm/mach-omap2/usb-ehci.c index c68f799e83c..d72d1ac3033 100644 --- a/arch/arm/mach-omap2/usb-ehci.c +++ b/arch/arm/mach-omap2/usb-ehci.c @@ -20,6 +20,8 @@ #include <linux/delay.h> #include <linux/platform_device.h> #include <linux/clk.h> +#include <linux/dma-mapping.h> + #include <asm/io.h> #include <plat/mux.h> |