Linux PCI subsystem development
 help / color / mirror / Atom feed
* [PATCH -next] pci: mvebu: fix return value check in mvebu_pcie_probe()
@ 2013-05-27  3:38 Wei Yongjun
  2013-05-27  7:12 ` Thomas Petazzoni
  2013-05-27 16:05 ` Jason Cooper
  0 siblings, 2 replies; 3+ messages in thread
From: Wei Yongjun @ 2013-05-27  3:38 UTC (permalink / raw)
  To: bhelgaas, grant.likely, rob.herring, jason, thomas.petazzoni
  Cc: yongjun_wei, linux-pci, devicetree-discuss

From: Wei Yongjun <yongjun_wei@trendmicro.com.cn>

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>
---
 drivers/pci/host/pci-mvebu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/pci/host/pci-mvebu.c b/drivers/pci/host/pci-mvebu.c
index 91106df..c8397c4 100644
--- a/drivers/pci/host/pci-mvebu.c
+++ b/drivers/pci/host/pci-mvebu.c
@@ -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);


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-05-27 16:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-27  3:38 [PATCH -next] pci: mvebu: fix return value check in mvebu_pcie_probe() Wei Yongjun
2013-05-27  7:12 ` Thomas Petazzoni
2013-05-27 16:05 ` Jason Cooper

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox