]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
ARM: ks8695: fix __initdata annotation
authorArnd Bergmann <arnd@arndb.de>
Mon, 8 Feb 2016 14:24:57 +0000 (15:24 +0100)
committerArnd Bergmann <arnd@arndb.de>
Fri, 26 Feb 2016 16:30:48 +0000 (17:30 +0100)
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>
arch/arm/mach-ks8695/board-og.c
arch/arm/mach-ks8695/cpu.c

index 1f4f2f4f25bb0b543e2a1cf5911eca6b7d438b7a..478ebd1f2b0f27ff16547e65e6cabde8289bdada 100644 (file)
@@ -80,7 +80,7 @@ static void __init og_pci_bus_reset(void)
 #define        S8250_VIRT      0xf4000000
 #define        S8250_SIZE      0x00100000
 
-static struct __initdata map_desc og_io_desc[] = {
+static struct map_desc og_io_desc[] __initdata = {
        {
                .virtual        = S8250_VIRT,
                .pfn            = __phys_to_pfn(S8250_PHYS),
index 474a050da85b91406afd85fc1efb1fc06a2695d3..7a1c4caa1ab5ae2943c7d03d18e272b5a4ee1953 100644 (file)
@@ -34,7 +34,7 @@
 #include <mach/regs-misc.h>
 
 
-static struct __initdata map_desc ks8695_io_desc[] = {
+static struct map_desc ks8695_io_desc[] __initdata = {
        {
                .virtual        = (unsigned long)KS8695_IO_VA,
                .pfn            = __phys_to_pfn(KS8695_IO_PA),