summaryrefslogtreecommitdiffstats
path: root/drivers/phy
diff options
context:
space:
mode:
authorAxel Lin2015-03-02 09:10:54 +0100
committerKishon Vijay Abraham I2015-03-12 06:31:16 +0100
commit1cbdfc48c3d4064e2515e4d837e714fd1aaa2d6e (patch)
treee16009bb682b20f6e4db74d1df62d7067666ea09 /drivers/phy
parentphy: exynos-dp-video: Kill exynos_dp_video_phy_pwr_isol function (diff)
downloadkernel-qcow2-linux-1cbdfc48c3d4064e2515e4d837e714fd1aaa2d6e.tar.gz
kernel-qcow2-linux-1cbdfc48c3d4064e2515e4d837e714fd1aaa2d6e.tar.xz
kernel-qcow2-linux-1cbdfc48c3d4064e2515e4d837e714fd1aaa2d6e.zip
phy: hix5hd2-sata: Check return value of platform_get_resource
This prevent NULL pointer dereference if res is NULL. Signed-off-by: Axel Lin <axel.lin@ingics.com> Acked-by: Zhangfei Gao <zhangfei.gao@linaro.org> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'drivers/phy')
-rw-r--r--drivers/phy/phy-hix5hd2-sata.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/phy/phy-hix5hd2-sata.c b/drivers/phy/phy-hix5hd2-sata.c
index 34915b4202f1..d6b22659cac1 100644
--- a/drivers/phy/phy-hix5hd2-sata.c
+++ b/drivers/phy/phy-hix5hd2-sata.c
@@ -147,6 +147,9 @@ static int hix5hd2_sata_phy_probe(struct platform_device *pdev)
return -ENOMEM;
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+ if (!res)
+ return -EINVAL;
+
priv->base = devm_ioremap(dev, res->start, resource_size(res));
if (!priv->base)
return -ENOMEM;