pci: mvebu: fix return value check in mvebu_pcie_probe()
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Mon, 27 May 2013 03:38:41 +0000 (11:38 +0800)
committerJason Cooper <jason@lakedaemon.net>
Mon, 27 May 2013 15:51:56 +0000 (15:51 +0000)
In case of error, function of_clk_get_by_name() returns
ERR_PTR() never returns NULL. The NULL test in the return
value check should be replaced with IS_ERR().

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
drivers/pci/host/pci-mvebu.c

index ad1c46bb8b1d50bbd5abcbacff92f0c0804e25fa..9236ac0bd17bdeac4e17528394f092f13fb0072d 100644 (file)
@@ -828,7 +828,7 @@ static int __init mvebu_pcie_probe(struct platform_device *pdev)
                }
 
                port->clk = of_clk_get_by_name(child, NULL);
-               if (!port->clk) {
+               if (IS_ERR(port->clk)) {
                        dev_err(&pdev->dev, "PCIe%d.%d: cannot get clock\n",
                               port->port, port->lane);
                        iounmap(port->base);