From: Tony Lindgren <tony@atomide.com>
To: Kevin Hilman <khilman@ti.com>
Cc: linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
Matt Porter <mporter@ti.com>
Subject: Re: [PATCH] ARM: OMAP2+: gpmc-smsc911x: only register regulator for first instance
Date: Tue, 6 Mar 2012 16:44:05 -0800 [thread overview]
Message-ID: <20120307004405.GC12083@atomide.com> (raw)
In-Reply-To: <1331080771-30687-1-git-send-email-khilman@ti.com>
* Kevin Hilman <khilman@ti.com> [120306 16:07]:
> commit e4b0b2cbbb (ARM: OMAP2+: gpmc-smsc911x: add required smsc911x
> regulators) added regulators which are registered during
> gpmc_smsc911x_init(). However, some platforms (OMAP3/Overo) have more
> than one instance of the SMSC911x and result in attempting to register
> the same regulator more than once which causes a panic().
>
> Fix this by only registering the regulator when the platform_data id
> field is zero, indicating its the first instance.
>
> Cc: Matt Porter <mporter@ti.com>
> Signed-off-by: Kevin Hilman <khilman@ti.com>
> ---
> Fix needed for v3.3.
> Applies on top of Tony's fixes branch.
>
> arch/arm/mach-omap2/gpmc-smsc911x.c | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/gpmc-smsc911x.c b/arch/arm/mach-omap2/gpmc-smsc911x.c
> index bbb870c..4d6f1c6 100644
> --- a/arch/arm/mach-omap2/gpmc-smsc911x.c
> +++ b/arch/arm/mach-omap2/gpmc-smsc911x.c
> @@ -101,10 +101,13 @@ void __init gpmc_smsc911x_init(struct omap_smsc911x_platform_data *board_data)
>
> gpmc_cfg = board_data;
>
> - ret = platform_device_register(&gpmc_smsc911x_regulator);
> - if (ret < 0) {
> - pr_err("Unable to register smsc911x regulators: %d\n", ret);
> - return;
> + if (!gpmc_cfg) {
Shouldn't this be !gpmc_cfg->id instead..
> + ret = platform_device_register(&gpmc_smsc911x_regulator);
> + if (ret < 0) {
> + pr_err("Unable to register smsc911x regulators: %d\n",
> + ret);
> + return;
> + }
> }
>
> if (gpmc_cs_request(gpmc_cfg->cs, SZ_16M, &cs_mem_base) < 0) {
..because we have gpmc_cfg always passed to gpmc_smsc911x_init().
Regards,
Tony
WARNING: multiple messages have this Message-ID (diff)
From: tony@atomide.com (Tony Lindgren)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: OMAP2+: gpmc-smsc911x: only register regulator for first instance
Date: Tue, 6 Mar 2012 16:44:05 -0800 [thread overview]
Message-ID: <20120307004405.GC12083@atomide.com> (raw)
In-Reply-To: <1331080771-30687-1-git-send-email-khilman@ti.com>
* Kevin Hilman <khilman@ti.com> [120306 16:07]:
> commit e4b0b2cbbb (ARM: OMAP2+: gpmc-smsc911x: add required smsc911x
> regulators) added regulators which are registered during
> gpmc_smsc911x_init(). However, some platforms (OMAP3/Overo) have more
> than one instance of the SMSC911x and result in attempting to register
> the same regulator more than once which causes a panic().
>
> Fix this by only registering the regulator when the platform_data id
> field is zero, indicating its the first instance.
>
> Cc: Matt Porter <mporter@ti.com>
> Signed-off-by: Kevin Hilman <khilman@ti.com>
> ---
> Fix needed for v3.3.
> Applies on top of Tony's fixes branch.
>
> arch/arm/mach-omap2/gpmc-smsc911x.c | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/arch/arm/mach-omap2/gpmc-smsc911x.c b/arch/arm/mach-omap2/gpmc-smsc911x.c
> index bbb870c..4d6f1c6 100644
> --- a/arch/arm/mach-omap2/gpmc-smsc911x.c
> +++ b/arch/arm/mach-omap2/gpmc-smsc911x.c
> @@ -101,10 +101,13 @@ void __init gpmc_smsc911x_init(struct omap_smsc911x_platform_data *board_data)
>
> gpmc_cfg = board_data;
>
> - ret = platform_device_register(&gpmc_smsc911x_regulator);
> - if (ret < 0) {
> - pr_err("Unable to register smsc911x regulators: %d\n", ret);
> - return;
> + if (!gpmc_cfg) {
Shouldn't this be !gpmc_cfg->id instead..
> + ret = platform_device_register(&gpmc_smsc911x_regulator);
> + if (ret < 0) {
> + pr_err("Unable to register smsc911x regulators: %d\n",
> + ret);
> + return;
> + }
> }
>
> if (gpmc_cs_request(gpmc_cfg->cs, SZ_16M, &cs_mem_base) < 0) {
..because we have gpmc_cfg always passed to gpmc_smsc911x_init().
Regards,
Tony
next prev parent reply other threads:[~2012-03-07 0:44 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-07 0:39 [PATCH] ARM: OMAP2+: gpmc-smsc911x: only register regulator for first instance Kevin Hilman
2012-03-07 0:39 ` Kevin Hilman
2012-03-07 0:44 ` Tony Lindgren [this message]
2012-03-07 0:44 ` Tony Lindgren
2012-03-07 1:39 ` Kevin Hilman
2012-03-07 1:39 ` Kevin Hilman
2012-03-07 2:28 ` Tony Lindgren
2012-03-07 2:28 ` Tony Lindgren
2012-03-19 21:18 ` Arnd Bergmann
2012-03-19 21:18 ` Arnd Bergmann
2012-03-19 21:39 ` Kevin Hilman
2012-03-19 21:39 ` Kevin Hilman
2012-03-19 22:09 ` Arnd Bergmann
2012-03-19 22:09 ` Arnd Bergmann
2012-03-19 22:48 ` Tony Lindgren
2012-03-19 22:48 ` Tony Lindgren
2012-03-20 8:20 ` Arnd Bergmann
2012-03-20 8:20 ` Arnd Bergmann
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=20120307004405.GC12083@atomide.com \
--to=tony@atomide.com \
--cc=khilman@ti.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-omap@vger.kernel.org \
--cc=mporter@ti.com \
/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.