]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ARM: bcm: mark bcm_kona_smc_init as __init
authorArnd Bergmann <arnd@arndb.de>
Tue, 23 Apr 2013 14:06:40 +0000 (16:06 +0200)
committerArnd Bergmann <arnd@arndb.de>
Tue, 23 Apr 2013 15:43:32 +0000 (17:43 +0200)
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>
arch/arm/mach-bcm/bcm_kona_smc.c

index 5f1d13175138e0dc85622536dcbf4878a48fafc8..56d9d19b24703896bb572dace20585efd012d9b6 100644 (file)
@@ -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;