From: Chen Gang <gang.chen@asianux.com>
To: Arnd Bergmann <arnd@arndb.de>
Cc: Greg KH <gregkh@linuxfoundation.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] drivers: misc: bmp085: remove '__init' from mp085_get_of_properties()
Date: Mon, 02 Sep 2013 15:56:51 +0800 [thread overview]
Message-ID: <522444C3.3000701@asianux.com> (raw)
In-Reply-To: <5224441B.9090305@asianux.com>
It seems the "./scripts/get_maintainer.pl" is not quite precise, it
lead me to send this mail to kernel mailing list, not to drivers
related mailing list.
[root@gchenlinux linux-next]# ./scripts/get_maintainer.pl /tmp/0001-drivers-misc-bmp085-remove-__init-from-mp085_get_of_.patch
Arnd Bergmann <arnd@arndb.de> (supporter:CHAR and MISC DRI...)
Greg Kroah-Hartman <gregkh@linuxfoundation.org> (supporter:CHAR and MISC DRI...)
linux-kernel@vger.kernel.org (open list)
Thanks.
On 09/02/2013 03:54 PM, Chen Gang wrote:
> bmp085_get_of_properties() is called by bmp085_init_client() which is
> called by bmp085_probe() which is an EXPORT_SYMBOL_GPL function.
>
> bmp085_probe() is really used as a probe function by another modules
> (e.g. bmp085-i2c.c, bmp085-spi.c).
>
> Except bmp085_get_of_properties(), all functions have no '__init', so
> need remove '__init' from bmp085_get_of_properties() too, or at least,
> it will report related warning:
>
> WARNING: vmlinux.o(.text+0x4c8a07): Section mismatch in reference from the variable .LM171 to the variable .init.text:_bmp085_get_of_properties
> The function .LM171() references
> the variable __init _bmp085_get_of_properties.
> This is often because .LM171 lacks a __init
> annotation or the annotation of _bmp085_get_of_properties is wrong.
>
>
> Signed-off-by: Chen Gang <gang.chen@asianux.com>
> ---
> drivers/misc/bmp085.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/misc/bmp085.c b/drivers/misc/bmp085.c
> index 849e2fe..2704d88 100644
> --- a/drivers/misc/bmp085.c
> +++ b/drivers/misc/bmp085.c
> @@ -374,7 +374,7 @@ int bmp085_detect(struct device *dev)
> }
> EXPORT_SYMBOL_GPL(bmp085_detect);
>
> -static void __init bmp085_get_of_properties(struct bmp085_data *data)
> +static void bmp085_get_of_properties(struct bmp085_data *data)
> {
> #ifdef CONFIG_OF
> struct device_node *np = data->dev->of_node;
>
--
Chen Gang
prev parent reply other threads:[~2013-09-02 7:57 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-02 7:54 [PATCH] drivers: misc: bmp085: remove '__init' from mp085_get_of_properties() Chen Gang
2013-09-02 7:56 ` Chen Gang [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=522444C3.3000701@asianux.com \
--to=gang.chen@asianux.com \
--cc=arnd@arndb.de \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.