Skip to content

Commit

Permalink
ARM: ks8695: fix __initdata annotation
Browse files Browse the repository at this point in the history
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 <[email protected]>
Acked-by: Greg Ungerer <[email protected]>
  • Loading branch information
arndb committed Feb 26, 2016
1 parent 5dc1104 commit 6ad7313
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/arm/mach-ks8695/board-og.c
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-ks8695/cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 6ad7313

Please sign in to comment.