clk: ppc-corenet: Fix Section mismatch warning
authorJingchang Lu <jingchang.lu@freescale.com>
Tue, 1 Jul 2014 08:37:11 +0000 (16:37 +0800)
committerMike Turquette <mturquette@linaro.org>
Wed, 2 Jul 2014 03:11:22 +0000 (20:11 -0700)
WARNING: drivers/built-in.o(.data+0x10258):
Section mismatch in reference from the variable ppc_corenet_clk_driver
to the (unknown reference) .init.rodata:(unknown)
The variable ppc_corenet_clk_driver references
the (unknown reference) __initconst (unknown)
If the reference is valid then annotate the
variable with __init* or __refdata (see linux/init.h) or name the variable:
*_template, *_timer, *_sht, *_ops, *_probe, *_probe_one, *_console

Signed-off-by: Jingchang Lu <jingchang.lu@freescale.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
drivers/clk/clk-ppc-corenet.c

index 8b284be4efa4ad7ae65d1c0947715c5522785cae..8e58edfeeb37e890e4fa2df0c2e1b4dc8e99aa6d 100644 (file)
@@ -291,7 +291,7 @@ static const struct of_device_id ppc_clk_ids[] __initconst = {
        {}
 };
 
-static struct platform_driver ppc_corenet_clk_driver = {
+static struct platform_driver ppc_corenet_clk_driver __initdata = {
        .driver = {
                .name = "ppc_corenet_clock",
                .owner = THIS_MODULE,
This page took 0.02568 seconds and 5 git commands to generate.