public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
From: mturquette@linaro.org (Mike Turquette)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] clk: socfpga: Fix section mismatch warning
Date: Tue, 18 Mar 2014 23:43:03 -0700	[thread overview]
Message-ID: <20140319064303.30995.2917@quantum> (raw)
In-Reply-To: <1394744881-15254-1-git-send-email-dinguyen@altera.com>

Quoting dinguyen at altera.com (2014-03-13 14:08:01)
> From: Dinh Nguyen <dinguyen@altera.com>
> 
> WARNING: drivers/clk/socfpga/built-in.o(.data+0xc0): Section mismatch in
> reference from the variable socfpga_child_clocks to the function
> .init.text:socfpga_pll_init()
> The variable socfpga_child_clocks references
> the function __init socfpga_pll_init()
> 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
> 
> WARNING: drivers/clk/socfpga/built-in.o(.data+0x184): Section mismatch in
> reference from the variable socfpga_child_clocks to the function
> .init.text:socfpga_periph_init()
> The variable socfpga_child_clocks references
> the function __init socfpga_periph_init()
> 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
> 
> WARNING: drivers/clk/socfpga/built-in.o(.data+0x248): Section mismatch in
> reference from the variable socfpga_child_clocks to the function
> .init.text:socfpga_gate_init()
> The variable socfpga_child_clocks references
> the function __init socfpga_gate_init()
> 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
> 
> Reported-by: Mike Turquette <mturquette@linaro.org>
> Signed-off-by: Dinh Nguyen <dinguyen@altera.com>

Thanks! Taken into clk-next.

Regards,
Mike

> ---
>  drivers/clk/socfpga/clk.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/socfpga/clk.c b/drivers/clk/socfpga/clk.c
> index 6217d5d..35a960a 100644
> --- a/drivers/clk/socfpga/clk.c
> +++ b/drivers/clk/socfpga/clk.c
> @@ -28,7 +28,7 @@
>  
>  void __iomem *clk_mgr_base_addr;
>  
> -static struct of_device_id socfpga_child_clocks[] = {
> +static const struct of_device_id socfpga_child_clocks[] __initconst = {
>         { .compatible = "altr,socfpga-pll-clock", socfpga_pll_init, },
>         { .compatible = "altr,socfpga-perip-clk", socfpga_periph_init, },
>         { .compatible = "altr,socfpga-gate-clk", socfpga_gate_init, },
> -- 
> 1.7.9.5
> 

      reply	other threads:[~2014-03-19  6:43 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-13 21:08 [PATCH] clk: socfpga: Fix section mismatch warning dinguyen at altera.com
2014-03-19  6:43 ` Mike Turquette [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140319064303.30995.2917@quantum \
    --to=mturquette@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox