Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1225061 > unrolled thread

[RESEND PATCH] spi: mediatek: fix wrong error return value on probe

Started byJavier Martinez Canillas <javier@osg.samsung.com>
First post2015-09-15 14:50 +0200
Last post2015-09-18 23:10 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [RESEND PATCH] spi: mediatek: fix wrong error return value on probe Javier Martinez Canillas <javier@osg.samsung.com> - 2015-09-15 14:50 +0200
    Re: [RESEND PATCH] spi: mediatek: fix wrong error return value on probe Matthias Brugger <matthias.bgg@gmail.com> - 2015-09-18 23:10 +0200

#1225061 — [RESEND PATCH] spi: mediatek: fix wrong error return value on probe

FromJavier Martinez Canillas <javier@osg.samsung.com>
Date2015-09-15 14:50 +0200
Subject[RESEND PATCH] spi: mediatek: fix wrong error return value on probe
Message-ID<q8XQn-55E-49@gated-at.bofh.it>
Commit adcbcfea15d62 ("spi: mediatek: fix spi clock usage error")
added a new sel_clk but introduced bugs in the error paths since
the wrong struct clk pointers are passed to PTR_ERR().

Fixes: adcbcfea15d62 ("spi: mediatek: fix spi clock usage error")
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>

---
Patch based on git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
branch fix/mediatek but also applies cleanly to branch for-linus.

It's the exact same patch than before so I don't know what went wrong.

 drivers/spi/spi-mt65xx.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/spi/spi-mt65xx.c b/drivers/spi/spi-mt65xx.c
index 6fbb5e5132b0..e9839a4e0175 100644
--- a/drivers/spi/spi-mt65xx.c
+++ b/drivers/spi/spi-mt65xx.c
@@ -585,14 +585,14 @@ static int mtk_spi_probe(struct platform_device *pdev)
 
 	mdata->sel_clk = devm_clk_get(&pdev->dev, "sel-clk");
 	if (IS_ERR(mdata->sel_clk)) {
-		ret = PTR_ERR(mdata->spi_clk);
+		ret = PTR_ERR(mdata->sel_clk);
 		dev_err(&pdev->dev, "failed to get sel-clk: %d\n", ret);
 		goto err_put_master;
 	}
 
 	mdata->spi_clk = devm_clk_get(&pdev->dev, "spi-clk");
 	if (IS_ERR(mdata->spi_clk)) {
-		ret = PTR_ERR(mdata->parent_clk);
+		ret = PTR_ERR(mdata->spi_clk);
 		dev_err(&pdev->dev, "failed to get spi-clk: %d\n", ret);
 		goto err_put_master;
 	}
-- 
2.4.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1228277

FromMatthias Brugger <matthias.bgg@gmail.com>
Date2015-09-18 23:10 +0200
Message-ID<qab4S-5Kv-21@gated-at.bofh.it>
In reply to#1225061
On Tuesday, September 15, 2015 02:46:45 PM Javier Martinez Canillas wrote:
> Commit adcbcfea15d62 ("spi: mediatek: fix spi clock usage error")
> added a new sel_clk but introduced bugs in the error paths since
> the wrong struct clk pointers are passed to PTR_ERR().
> 
> Fixes: adcbcfea15d62 ("spi: mediatek: fix spi clock usage error")
> Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
> 

Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com>

> ---
> Patch based on git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
> branch fix/mediatek but also applies cleanly to branch for-linus.
> 
> It's the exact same patch than before so I don't know what went wrong.
> 
>  drivers/spi/spi-mt65xx.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/spi/spi-mt65xx.c b/drivers/spi/spi-mt65xx.c
> index 6fbb5e5132b0..e9839a4e0175 100644
> --- a/drivers/spi/spi-mt65xx.c
> +++ b/drivers/spi/spi-mt65xx.c
> @@ -585,14 +585,14 @@ static int mtk_spi_probe(struct platform_device *pdev)
> 
>  	mdata->sel_clk = devm_clk_get(&pdev->dev, "sel-clk");
>  	if (IS_ERR(mdata->sel_clk)) {
> -		ret = PTR_ERR(mdata->spi_clk);
> +		ret = PTR_ERR(mdata->sel_clk);
>  		dev_err(&pdev->dev, "failed to get sel-clk: %d\n", ret);
>  		goto err_put_master;
>  	}
> 
>  	mdata->spi_clk = devm_clk_get(&pdev->dev, "spi-clk");
>  	if (IS_ERR(mdata->spi_clk)) {
> -		ret = PTR_ERR(mdata->parent_clk);
> +		ret = PTR_ERR(mdata->spi_clk);
>  		dev_err(&pdev->dev, "failed to get spi-clk: %d\n", ret);
>  		goto err_put_master;
>  	}

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web