diff mbox series

[3/4] ARM: ks8695: fix section mismatch warning

Message ID 20181210215856.2238253-3-arnd@arndb.de
State Accepted
Commit 4aa64677330beeeed721b4b122884dabad845d66
Headers show
Series None | expand

Commit Message

Arnd Bergmann Dec. 10, 2018, 9:58 p.m. UTC
WARNING: vmlinux.o(.text+0x13250): Section mismatch in reference from the function acs5k_i2c_init() to the (unknown reference) .init.data:(unknown)
The function acs5k_i2c_init() references
the (unknown reference) __initdata (unknown).
This is often because acs5k_i2c_init lacks a __initdata
annotation or the annotation of (unknown) is wrong.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>

---
 arch/arm/mach-ks8695/board-acs5k.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.20.0

Comments

Olof Johansson Dec. 12, 2018, 9:56 p.m. UTC | #1
On Mon, Dec 10, 2018 at 10:58:38PM +0100, Arnd Bergmann wrote:
> WARNING: vmlinux.o(.text+0x13250): Section mismatch in reference from the function acs5k_i2c_init() to the (unknown reference) .init.data:(unknown)

> The function acs5k_i2c_init() references

> the (unknown reference) __initdata (unknown).

> This is often because acs5k_i2c_init lacks a __initdata

> annotation or the annotation of (unknown) is wrong.

> 

> Signed-off-by: Arnd Bergmann <arnd@arndb.de>


Applied to next/soc in arm-soc now.


-Olof
diff mbox series

Patch

diff --git a/arch/arm/mach-ks8695/board-acs5k.c b/arch/arm/mach-ks8695/board-acs5k.c
index ef835d82cdb9..5783062224c3 100644
--- a/arch/arm/mach-ks8695/board-acs5k.c
+++ b/arch/arm/mach-ks8695/board-acs5k.c
@@ -100,7 +100,7 @@  static struct i2c_board_info acs5k_i2c_devs[] __initdata = {
 	},
 };
 
-static void acs5k_i2c_init(void)
+static void __init acs5k_i2c_init(void)
 {
 	/* The gpio interface */
 	gpiod_add_lookup_table(&acs5k_i2c_gpiod_table);