omap1_clk_functions was only used by omap1_clk_init() which sits in __init section, so make omap1_clock_functions be __initdata to avoid the section mismatch. Signed-off-by: Felipe Balbi <felipe.balbi@xxxxxxxxx> --- arch/arm/mach-omap1/clock.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap1/clock.c b/arch/arm/mach-omap1/clock.c index 42cbe20..d28ace2 100644 --- a/arch/arm/mach-omap1/clock.c +++ b/arch/arm/mach-omap1/clock.c @@ -744,7 +744,7 @@ static void __init omap1_clk_disable_unused(struct clk *clk) #define omap1_clk_disable_unused NULL #endif -static struct clk_functions omap1_clk_functions = { +static struct clk_functions omap1_clk_functions __initdata = { .clk_enable = omap1_clk_enable, .clk_disable = omap1_clk_disable, .clk_round_rate = omap1_clk_round_rate, -- 1.6.6.rc0 -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html