All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
To: Doug Anderson <dianders@chromium.org>
Cc: linux-i2c@vger.kernel.org,
	Mark Brown <broonie@opensource.wolfsonmicro.com>,
	Kukjin Kim <kgene.kim@samsung.com>,
	Olof Johansson <olof@lixom.net>,
	Thomas Abraham <thomas.abraham@linaro.org>,
	Padmavathi Venna <padma.v@samsung.com>,
	Ben Dooks <ben-linux@fluff.org>,
	Wolfram Sang <w.sang@pengutronix.de>,
	linux-arm-kernel@lists.infradead.org,
	linux-samsung-soc@vger.kernel.org,
	Haojian Zhuang <haojian.zhuang@gmail.com>,
	Arnd Bergmann <arnd@arndb.de>,
	Andrew Morton <akpm@linux-foundation.org>,
	Karol Lewandowski <k.lewandowsk@samsung.com>,
	linux-kernel@vger.kernel.org
Subject: Re: [REPOST PATCH 2/2] i2c: pxa: Use i2c-core to get bus number now
Date: Fri, 11 Jan 2013 23:12:20 +0100	[thread overview]
Message-ID: <50F08E44.3050500@gmail.com> (raw)
In-Reply-To: <1357927027-4857-3-git-send-email-dianders@chromium.org>

Hi,

On 01/11/2013 06:57 PM, Doug Anderson wrote:
> The commit: "i2c-core: dt: Pick i2c bus number from i2c alias if
> present" adds support for automatically picking the bus number based
> on the alias ID.  Remove the now unnecessary code from i2c-pxa that
> did the same thing.
>
> Signed-off-by: Doug Anderson<dianders@chromium.org>
> Acked-by: Haojian Zhuang<haojian.zhuang@gmail.com>
> ---
>   drivers/i2c/busses/i2c-pxa.c |    8 +-------
>   1 files changed, 1 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-pxa.c b/drivers/i2c/busses/i2c-pxa.c
> index 1034d93..8ee9fa0 100644
> --- a/drivers/i2c/busses/i2c-pxa.c
> +++ b/drivers/i2c/busses/i2c-pxa.c
> @@ -1053,16 +1053,10 @@ static int i2c_pxa_probe_dt(struct platform_device *pdev, struct pxa_i2c *i2c,
>   	struct device_node *np = pdev->dev.of_node;
>   	const struct of_device_id *of_id =
>   			of_match_device(i2c_pxa_dt_ids,&pdev->dev);
> -	int ret;
>
>   	if (!of_id)
>   		return 1;
> -	ret = of_alias_get_id(np, "i2c");
> -	if (ret<  0) {
> -		dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
> -		return ret;
> -	}
> -	pdev->id = ret;
> +	pdev->id = -1;

I think assignments like this are illegal. At this point the device is
already registered and modifying pdev->id can cause issues at the core
code.

It might be better to have the bus number stored in struct pxa_i2c,
initialized with pdev->id value for non-dt and now with -1 for dt case.

I realize it is not something your patch is intended to deal with,
but since you're touching this code maybe it's worth to fix that issue
as well ?

--

Thanks,
Sylwester

WARNING: multiple messages have this Message-ID (diff)
From: sylvester.nawrocki@gmail.com (Sylwester Nawrocki)
To: linux-arm-kernel@lists.infradead.org
Subject: [REPOST PATCH 2/2] i2c: pxa: Use i2c-core to get bus number now
Date: Fri, 11 Jan 2013 23:12:20 +0100	[thread overview]
Message-ID: <50F08E44.3050500@gmail.com> (raw)
In-Reply-To: <1357927027-4857-3-git-send-email-dianders@chromium.org>

Hi,

On 01/11/2013 06:57 PM, Doug Anderson wrote:
> The commit: "i2c-core: dt: Pick i2c bus number from i2c alias if
> present" adds support for automatically picking the bus number based
> on the alias ID.  Remove the now unnecessary code from i2c-pxa that
> did the same thing.
>
> Signed-off-by: Doug Anderson<dianders@chromium.org>
> Acked-by: Haojian Zhuang<haojian.zhuang@gmail.com>
> ---
>   drivers/i2c/busses/i2c-pxa.c |    8 +-------
>   1 files changed, 1 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/i2c/busses/i2c-pxa.c b/drivers/i2c/busses/i2c-pxa.c
> index 1034d93..8ee9fa0 100644
> --- a/drivers/i2c/busses/i2c-pxa.c
> +++ b/drivers/i2c/busses/i2c-pxa.c
> @@ -1053,16 +1053,10 @@ static int i2c_pxa_probe_dt(struct platform_device *pdev, struct pxa_i2c *i2c,
>   	struct device_node *np = pdev->dev.of_node;
>   	const struct of_device_id *of_id =
>   			of_match_device(i2c_pxa_dt_ids,&pdev->dev);
> -	int ret;
>
>   	if (!of_id)
>   		return 1;
> -	ret = of_alias_get_id(np, "i2c");
> -	if (ret<  0) {
> -		dev_err(&pdev->dev, "failed to get alias id, errno %d\n", ret);
> -		return ret;
> -	}
> -	pdev->id = ret;
> +	pdev->id = -1;

I think assignments like this are illegal. At this point the device is
already registered and modifying pdev->id can cause issues at the core
code.

It might be better to have the bus number stored in struct pxa_i2c,
initialized with pdev->id value for non-dt and now with -1 for dt case.

I realize it is not something your patch is intended to deal with,
but since you're touching this code maybe it's worth to fix that issue
as well ?

--

Thanks,
Sylwester

  reply	other threads:[~2013-01-11 22:12 UTC|newest]

Thread overview: 58+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-11-20 22:27 [PATCH 1/2] ARM: EXYNOS: Add aliases for i2c controller for exynos4 Doug Anderson
2012-11-20 22:27 ` Doug Anderson
2012-11-20 22:27 ` [PATCH 2/2] i2c: s3c2410: Get the i2c bus number from alias id Doug Anderson
2012-11-20 22:27   ` Doug Anderson
     [not found]   ` <1353450428-2615-2-git-send-email-dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2012-11-21  4:09     ` Mark Brown
2012-11-21  4:09       ` Mark Brown
2012-11-21  4:09       ` Mark Brown
2012-11-21 18:33       ` Doug Anderson
2012-11-21 18:33         ` Doug Anderson
2012-11-22  6:56         ` Kukjin Kim
2012-11-22  6:56           ` Kukjin Kim
2012-11-22  6:56           ` Kukjin Kim
2012-11-21  9:43     ` Kukjin Kim
2012-11-21  9:43       ` Kukjin Kim
2012-11-21  9:43       ` Kukjin Kim
2012-11-21 18:26     ` [PATCH 0/2] Add automatic bus number support for i2c busses with device tree Doug Anderson
2012-11-21 18:26       ` Doug Anderson
2012-11-21 18:26       ` [PATCH 1/2] i2c-core: dt: Pick i2c bus number from i2c alias if present Doug Anderson
2012-11-21 18:26         ` Doug Anderson
2012-12-05  1:45         ` Haojian Zhuang
2012-12-05  1:45           ` Haojian Zhuang
2013-01-11 17:57         ` [REPOST PATCH 0/2] Add automatic bus number support for i2c busses with device tree Doug Anderson
2013-01-11 17:57           ` Doug Anderson
2013-01-11 17:57           ` [REPOST PATCH 1/2] i2c-core: dt: Pick i2c bus number from i2c alias if present Doug Anderson
2013-01-11 17:57             ` Doug Anderson
2013-01-14 18:53             ` [PATCH v2 0/2] Add automatic bus number support for i2c busses with device tree Doug Anderson
2013-01-14 18:53               ` Doug Anderson
2013-01-14 18:53               ` [PATCH v2 1/2] i2c-core: dt: Pick i2c bus number from i2c alias if present Doug Anderson
2013-01-14 18:53                 ` Doug Anderson
     [not found]                 ` <1358189602-24180-2-git-send-email-dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2013-01-15  6:34                   ` Olof Johansson
2013-01-15  6:34                     ` Olof Johansson
2013-01-15  6:34                     ` Olof Johansson
2013-02-10 12:19                   ` Wolfram Sang
2013-02-10 12:19                     ` Wolfram Sang
2013-02-10 12:19                     ` Wolfram Sang
     [not found]                     ` <20130210121901.GA15546-8EAEigeeuNG034pCzgS/Qg7AFbiQbgqx@public.gmane.org>
2013-02-12  0:48                       ` Doug Anderson
2013-02-12  0:48                         ` Doug Anderson
2013-02-12  0:48                         ` Doug Anderson
2013-01-14 18:53               ` [PATCH v2 2/2] i2c: pxa: Use i2c-core to get bus number now Doug Anderson
2013-01-14 18:53                 ` Doug Anderson
2013-01-11 17:57           ` [REPOST PATCH " Doug Anderson
2013-01-11 17:57             ` Doug Anderson
2013-01-11 22:12             ` Sylwester Nawrocki [this message]
2013-01-11 22:12               ` Sylwester Nawrocki
2013-01-14 18:52               ` Doug Anderson
2013-01-14 18:52                 ` Doug Anderson
     [not found]       ` <1353522362-25519-1-git-send-email-dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2012-11-21 18:26         ` [PATCH " Doug Anderson
2012-11-21 18:26           ` Doug Anderson
2012-11-21 18:26           ` Doug Anderson
2012-12-05  1:45           ` Haojian Zhuang
2012-12-05  1:45             ` Haojian Zhuang
2012-12-05  1:48       ` [PATCH 0/2] Add automatic bus number support for i2c busses with device tree Haojian Zhuang
2012-12-05  1:48         ` Haojian Zhuang
     [not found] ` <1353450428-2615-1-git-send-email-dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2012-11-21  7:25   ` [PATCH 1/2] ARM: EXYNOS: Add aliases for i2c controller for exynos4 Olof Johansson
2012-11-21  7:25     ` Olof Johansson
2012-11-21  7:25     ` Olof Johansson
2012-11-21  9:43 ` Kukjin Kim
2012-11-21  9:43   ` Kukjin Kim

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=50F08E44.3050500@gmail.com \
    --to=sylvester.nawrocki@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=arnd@arndb.de \
    --cc=ben-linux@fluff.org \
    --cc=broonie@opensource.wolfsonmicro.com \
    --cc=dianders@chromium.org \
    --cc=haojian.zhuang@gmail.com \
    --cc=k.lewandowsk@samsung.com \
    --cc=kgene.kim@samsung.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-i2c@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=olof@lixom.net \
    --cc=padma.v@samsung.com \
    --cc=thomas.abraham@linaro.org \
    --cc=w.sang@pengutronix.de \
    /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.