Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 92752d99 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Brian Norris
Browse files

mtd: mtk-nor: Drop bogus __init from mtk_nor_init()



WARNING: drivers/mtd/spi-nor/mtk-quadspi.o(.text+0x77e): Section mismatch in reference from the function mtk_nor_drv_probe() to the function .init.text:mtk_nor_init()
The function mtk_nor_drv_probe() references
the function __init mtk_nor_init().
This is often because mtk_nor_drv_probe lacks a __init
annotation or the annotation of mtk_nor_init is wrong.

Drop the bogus __init from mtk_nor_init() to kill this warning.

Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
parent 9146cbd5
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -371,7 +371,7 @@ static int mt8173_nor_write_reg(struct spi_nor *nor, u8 opcode, u8 *buf,
	return ret;
	return ret;
}
}


static int __init mtk_nor_init(struct mt8173_nor *mt8173_nor,
static int mtk_nor_init(struct mt8173_nor *mt8173_nor,
			struct device_node *flash_node)
			struct device_node *flash_node)
{
{
	int ret;
	int ret;