diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-04-23 16:06:40 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-04-23 17:43:32 +0200 |
commit | 721e0205b07589223343737a9c421d8118d87bba (patch) | |
tree | 0bb16e9835736349cedba63f6d2006726af11045 /arch/arm/mach-bcm | |
parent | 5724c52fbef16f17af3b92c6cae4fda391beb84c (diff) | |
download | linux-rt-721e0205b07589223343737a9c421d8118d87bba.tar.gz |
ARM: bcm: mark bcm_kona_smc_init as __init
The bcm_kona_smc_init function references the bcm_kona_smc_ids variable
that is marked __initconst, so the function itself has to be __init
to avoid this build error:
WARNING: arch/arm/mach-bcm/built-in.o(.text+0x12c): Section mismatch in reference from the function bcm_kona_smc_init() to the (unknown reference) .init.rodata:(unknown)
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Christian Daudt <csd@broadcom.com>
Diffstat (limited to 'arch/arm/mach-bcm')
-rw-r--r-- | arch/arm/mach-bcm/bcm_kona_smc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-bcm/bcm_kona_smc.c b/arch/arm/mach-bcm/bcm_kona_smc.c index 5f1d13175138..56d9d19b2470 100644 --- a/arch/arm/mach-bcm/bcm_kona_smc.c +++ b/arch/arm/mach-bcm/bcm_kona_smc.c @@ -41,7 +41,7 @@ static const struct of_device_id bcm_kona_smc_ids[] __initconst = { }; /* Map in the bounce area */ -void bcm_kona_smc_init(void) +void __init bcm_kona_smc_init(void) { struct device_node *node; |