From: Ryosuke Saito Date: Wed, 21 Mar 2012 09:47:47 +0000 (+0900) Subject: mtd: phram: fix section mismatch for phram_setup X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b11ec57fc6e6d4882ef01a0c09a1dde58f50492e;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git mtd: phram: fix section mismatch for phram_setup phram_setup() is only called from init_phram() which is in .init.text, so it must be in the same section to avoid a section mismatch warning. Signed-off-by: Ryosuke Saito Signed-off-by: Artem Bityutskiy Signed-off-by: David Woodhouse --- diff --git a/drivers/mtd/devices/phram.c b/drivers/mtd/devices/phram.c index 3d91ace1ee4c..67823de68db6 100644 --- a/drivers/mtd/devices/phram.c +++ b/drivers/mtd/devices/phram.c @@ -215,7 +215,7 @@ static inline void kill_final_newline(char *str) */ static __initdata char phram_paramline[64+12+12]; -static int phram_setup(const char *val) +static int __init phram_setup(const char *val) { char buf[64+12+12], *str = buf; char *token[3];