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


Groups > linux.kernel > #1595124

[PATCH] phy: phy-exynos-pcie: fix the wrong error return

From Jaehoon Chung <jh80.chung@samsung.com>
Newsgroups linux.kernel
Subject [PATCH] phy: phy-exynos-pcie: fix the wrong error return
Date 2017-03-08 13:40 +0100
Message-ID <tiJ2O-6yt-25@gated-at.bofh.it> (permalink)
References <tiJ2O-6yt-27@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


When it doesn't get the blk_base's resource, it was returned
the error about phy_base, not blk_base.
This patch is for fixing the wrong error return about blk_base.

Fixes: cf0adb8e281b ("phy: phy-exynos-pcie: Add support for Exynos PCIe PHY")

Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
---
 drivers/phy/phy-exynos-pcie.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/phy/phy-exynos-pcie.c b/drivers/phy/phy-exynos-pcie.c
index 4f60b83..60baf25 100644
--- a/drivers/phy/phy-exynos-pcie.c
+++ b/drivers/phy/phy-exynos-pcie.c
@@ -254,8 +254,8 @@ static int exynos_pcie_phy_probe(struct platform_device *pdev)
 
 	res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
 	exynos_phy->blk_base = devm_ioremap_resource(dev, res);
-	if (IS_ERR(exynos_phy->phy_base))
-		return PTR_ERR(exynos_phy->phy_base);
+	if (IS_ERR(exynos_phy->blk_base))
+		return PTR_ERR(exynos_phy->blk_base);
 
 	exynos_phy->drv_data = drv_data;
 
-- 
2.10.2

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] phy: phy-exynos-pcie: fix the wrong error return Jaehoon Chung <jh80.chung@samsung.com> - 2017-03-08 13:40 +0100
  Re: [PATCH] phy: phy-exynos-pcie: fix the wrong error return Kishon Vijay Abraham I <kishon@ti.com> - 2017-03-09 09:20 +0100

csiph-web