diff options
author | Tony Lindgren <tony@atomide.com> | 2013-02-11 14:46:00 -0800 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2013-03-04 11:12:16 -0800 |
commit | 0adcbaf78f6267baf4eecc201107d8f8ff3b200c (patch) | |
tree | cd3b716a0045af08478bb5e18452d332670ec00f /arch/arm/mach-omap1 | |
parent | 6dbe51c251a327e012439c4772097a13df43c5b8 (diff) | |
download | linux-next-0adcbaf78f6267baf4eecc201107d8f8ff3b200c.tar.gz |
ARM: OMAP1: Fix build related to kgdb.h no longer including serial_8250.h
Commit 16559ae4 (kgdb: remove #include <linux/serial_8250.h> from kgdb.h)
had a side effect of breaking omap1_defconfig build as some headers
were included indirectly:
arch/arm/mach-omap1/board-h2.c:249: error: ‘INT_KEYBOARD’ undeclared here (not in a function)
...
This worked earlier as linux/serial_8250.h included linux/serial_core.h,
via linux/serial_8250.h from linux/kgdb.h. Fix this by including the
necessary headers directly.
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap1')
-rw-r--r-- | arch/arm/mach-omap1/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-omap1/common.h b/arch/arm/mach-omap1/common.h index fb18831e88aa..14f7e9920479 100644 --- a/arch/arm/mach-omap1/common.h +++ b/arch/arm/mach-omap1/common.h @@ -31,6 +31,8 @@ #include <plat/i2c.h> +#include <mach/irqs.h> + #if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850) void omap7xx_map_io(void); #else |