diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2008-05-23 15:38:07 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-05-23 15:38:07 +0100 |
commit | cfb41bf756cac168c829e27def36072dbfbe6fd0 (patch) | |
tree | 4c3db390285bacc8c3379eb599585bd816e3fff1 /include/asm-arm/arch-omap/board-palmte.h | |
parent | 2a740d7a64807acaceb7e44ccf50df35107a34ab (diff) | |
download | op-kernel-dev-cfb41bf756cac168c829e27def36072dbfbe6fd0.zip op-kernel-dev-cfb41bf756cac168c829e27def36072dbfbe6fd0.tar.gz |
[ARM] fix OMAP include loops
OMAP has two include loops in its header files:
asm-arm/hardware.h <- asm-arm/arch-omap/io.h <-
asm-arm/arch-omap/hardware.h <- asm-arm/hardware.h
asm-arm/arch-omap/board-palmte.h <-
asm-arm/arch-omap/hardware.h <- asm-arm/hardware.h <-
asm-arm/arch-omap/gpio.h <- asm-arm/arch-omap/board-palmte.h
Circular include dependencies are dangerous since they can result in
inconsistent definitions being provided to other code, especially if
'#ifndef' constructs are used.
Solve these by removing the offending includes, and add additional
includes where necessary.
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/asm-arm/arch-omap/board-palmte.h')
-rw-r--r-- | include/asm-arm/arch-omap/board-palmte.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/asm-arm/arch-omap/board-palmte.h b/include/asm-arm/arch-omap/board-palmte.h index cd22035..6fac2c8 100644 --- a/include/asm-arm/arch-omap/board-palmte.h +++ b/include/asm-arm/arch-omap/board-palmte.h @@ -14,8 +14,6 @@ #ifndef __OMAP_BOARD_PALMTE_H #define __OMAP_BOARD_PALMTE_H -#include <asm/arch/gpio.h> - #define PALMTE_USBDETECT_GPIO 0 #define PALMTE_USB_OR_DC_GPIO 1 #define PALMTE_TSC_GPIO 4 |