diff options
author | Arnd Bergmann <arnd@arndb.de> | 2016-02-08 09:24:57 -0500 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2016-02-26 11:30:48 -0500 |
commit | 6ad7313b534b1bdef09a07d4baad54e8d93e8480 (patch) | |
tree | 4d283c743751d09a4f236c014409480e0d645d5c | |
parent | 5dc1104960f634445b2296c865b1d091a495bcef (diff) |
ARM: ks8695: fix __initdata annotation
Clang complains about the __initdata section attribute being in the
wrong place in two files of ks8695:
arch/arm/mach-ks8695/cpu.c:37:31: error: '__section__' attribute only applies to functions and global variables
arch/arm/mach-ks8695/board-og.c:83:31: error: '__section__' attribute only applies to functions and global variables
This moves the attribute to the correct place.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Greg Ungerer <gerg@uclinux.org>
-rw-r--r-- | arch/arm/mach-ks8695/board-og.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-ks8695/cpu.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-ks8695/board-og.c b/arch/arm/mach-ks8695/board-og.c index 1f4f2f4f25bb..478ebd1f2b0f 100644 --- a/arch/arm/mach-ks8695/board-og.c +++ b/arch/arm/mach-ks8695/board-og.c | |||
@@ -80,7 +80,7 @@ static void __init og_pci_bus_reset(void) | |||
80 | #define S8250_VIRT 0xf4000000 | 80 | #define S8250_VIRT 0xf4000000 |
81 | #define S8250_SIZE 0x00100000 | 81 | #define S8250_SIZE 0x00100000 |
82 | 82 | ||
83 | static struct __initdata map_desc og_io_desc[] = { | 83 | static struct map_desc og_io_desc[] __initdata = { |
84 | { | 84 | { |
85 | .virtual = S8250_VIRT, | 85 | .virtual = S8250_VIRT, |
86 | .pfn = __phys_to_pfn(S8250_PHYS), | 86 | .pfn = __phys_to_pfn(S8250_PHYS), |
diff --git a/arch/arm/mach-ks8695/cpu.c b/arch/arm/mach-ks8695/cpu.c index 474a050da85b..7a1c4caa1ab5 100644 --- a/arch/arm/mach-ks8695/cpu.c +++ b/arch/arm/mach-ks8695/cpu.c | |||
@@ -34,7 +34,7 @@ | |||
34 | #include <mach/regs-misc.h> | 34 | #include <mach/regs-misc.h> |
35 | 35 | ||
36 | 36 | ||
37 | static struct __initdata map_desc ks8695_io_desc[] = { | 37 | static struct map_desc ks8695_io_desc[] __initdata = { |
38 | { | 38 | { |
39 | .virtual = (unsigned long)KS8695_IO_VA, | 39 | .virtual = (unsigned long)KS8695_IO_VA, |
40 | .pfn = __phys_to_pfn(KS8695_IO_PA), | 40 | .pfn = __phys_to_pfn(KS8695_IO_PA), |