[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAPDyKFoAVHybjyZO9VuNPOrMJ41ogWHn65tWkLLxmNeNdkOZ-w@mail.gmail.com>
Date: Wed, 21 Jan 2015 12:37:37 +0100
From: Ulf Hansson <ulf.hansson@...aro.org>
To: kbuild test robot <fengguang.wu@...el.com>
Cc: Vincent Yang <vincent.yang.fujitsu@...il.com>,
"kbuild-all@...org" <kbuild-all@...org>,
Andy Green <andy.green@...aro.org>,
Tetsuya Takinishi <t.takinishi@...fujitsu.com>,
Chris Ball <chris@...ntf.net>,
linux-mmc <linux-mmc@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] mmc: sdhci: host: fix odd_ptr_err.cocci warnings
On 21 January 2015 at 12:19, kbuild test robot <fengguang.wu@...el.com> wrote:
> drivers/mmc/host/sdhci_f_sdh30.c:143:5-11: inconsistent IS_ERR and PTR_ERR, PTR_ERR on line 144
>
> PTR_ERR should access the value just tested by IS_ERR
>
> Semantic patch information:
> There can be false positives in the patch case, where it is the call
> IS_ERR that is wrong.
>
> Generated by: scripts/coccinelle/tests/odd_ptr_err.cocci
Cool script. :-)
>
> CC: Vincent Yang <vincent.yang.fujitsu@...il.com>
> Signed-off-by: Fengguang Wu <fengguang.wu@...el.com>
Thanks! Applied for next.
Kind regards
Uffe
> ---
>
> sdhci_f_sdh30.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> --- a/drivers/mmc/host/sdhci_f_sdh30.c
> +++ b/drivers/mmc/host/sdhci_f_sdh30.c
> @@ -141,7 +141,7 @@ static int sdhci_f_sdh30_probe(struct pl
> res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> host->ioaddr = devm_ioremap_resource(&pdev->dev, res);
> if (IS_ERR(host->ioaddr)) {
> - ret = PTR_ERR(host);
> + ret = PTR_ERR(host->ioaddr);
> goto err;
> }
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@...r.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists