* Suresh Rajashekara <suresh@xxxxxxxxxxxxxxxxxxxx> [081111 16:18]: > Section mismatch warnings when compiling latest git for MACH_OMAP_OSK. > Missing __initdata on the omap1_clk_functions. > > Signed-off-by: Suresh Rajashekara <suresh@xxxxxxxxxxxxxxxxxxxx> > --- > 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 4d0c444..aab7ab1 100644 > --- a/arch/arm/mach-omap1/clock.c > +++ b/arch/arm/mach-omap1/clock.c > @@ -636,7 +636,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, This struct cannot be __initdata, it is used by plat-omap/clock.c as arch_clock. Tony -- 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