From: Russell King Date: Thu, 27 Oct 2011 10:37:47 +0000 (+0100) Subject: ARM: PXA: eseries: fix eseries_register_clks section mismatch warning X-Git-Tag: v3.2-rc1~35^2~4 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=955d2953b0402f497d58eaea91f36486bb473008;p=pandora-kernel.git ARM: PXA: eseries: fix eseries_register_clks section mismatch warning Fix: WARNING: vmlinux.o(.text+0x1a820): Section mismatch in reference from the function eseries_register_clks() to the function .init.text:clkdev_add_table() The function eseries_register_clks() references the function __init clkdev_add_table(). This is often because eseries_register_clks lacks a __init annotation or the annotation of clkdev_add_table is wrong. by adding the __init annotation to eseries_register_clks() - this function is only called from other __init-marked functions. While we're here, mark it static as it's only called from within eseries.c. Acked-by: Eric Miao Signed-off-by: Russell King --- Reading git-diff-tree failed