diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2008-08-02 17:33:18 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-08-02 17:35:16 -0400 |
commit | bccf650270a94cec6e9238743e84c6e01de30c70 (patch) | |
tree | 7e58444f9a976a1d680cfe3d2d47677fabdaa048 /arch/arm/mach-ns9xxx/gpio.c | |
parent | 4baa9922430662431231ac637adedddbb0cfb2d7 (diff) |
[ARM] Fix explicit asm(-arm)?/arch-foo references
No file should be explicitly referencing its own platform headers
by specifying an absolute include path. Fix these paths to use
standard <asm/arch/...> includes.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-ns9xxx/gpio.c')
-rw-r--r-- | arch/arm/mach-ns9xxx/gpio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-ns9xxx/gpio.c b/arch/arm/mach-ns9xxx/gpio.c index b3c963b0c8f5..ed4c83389d4a 100644 --- a/arch/arm/mach-ns9xxx/gpio.c +++ b/arch/arm/mach-ns9xxx/gpio.c | |||
@@ -13,9 +13,9 @@ | |||
13 | #include <linux/spinlock.h> | 13 | #include <linux/spinlock.h> |
14 | #include <linux/module.h> | 14 | #include <linux/module.h> |
15 | 15 | ||
16 | #include <asm/arch-ns9xxx/gpio.h> | 16 | #include <asm/arch/gpio.h> |
17 | #include <asm/arch-ns9xxx/processor.h> | 17 | #include <asm/arch/processor.h> |
18 | #include <asm/arch-ns9xxx/processor-ns9360.h> | 18 | #include <asm/arch/processor-ns9360.h> |
19 | #include <asm/bug.h> | 19 | #include <asm/bug.h> |
20 | #include <asm/types.h> | 20 | #include <asm/types.h> |
21 | #include <asm/bitops.h> | 21 | #include <asm/bitops.h> |