Commit 780feae7 authored by YueHaibing's avatar YueHaibing Committed by David S. Miller

mdio_bus: Fix PTR_ERR() usage after initialization to constant

Fix coccinelle warning:

./drivers/net/phy/mdio_bus.c:51:5-12: ERROR: PTR_ERR applied after initialization to constant on line 44
./drivers/net/phy/mdio_bus.c:52:5-12: ERROR: PTR_ERR applied after initialization to constant on line 44

fix this by using IS_ERR before PTR_ERR

Fixes: bafbdd52 ("phylib: Add device reset GPIO support")
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 31ef5b0e
...@@ -48,11 +48,12 @@ static int mdiobus_register_gpiod(struct mdio_device *mdiodev) ...@@ -48,11 +48,12 @@ static int mdiobus_register_gpiod(struct mdio_device *mdiodev)
gpiod = fwnode_get_named_gpiod(&mdiodev->dev.of_node->fwnode, gpiod = fwnode_get_named_gpiod(&mdiodev->dev.of_node->fwnode,
"reset-gpios", 0, GPIOD_OUT_LOW, "reset-gpios", 0, GPIOD_OUT_LOW,
"PHY reset"); "PHY reset");
if (PTR_ERR(gpiod) == -ENOENT || if (IS_ERR(gpiod)) {
PTR_ERR(gpiod) == -ENOSYS) if (PTR_ERR(gpiod) == -ENOENT || PTR_ERR(gpiod) == -ENOSYS)
gpiod = NULL; gpiod = NULL;
else if (IS_ERR(gpiod)) else
return PTR_ERR(gpiod); return PTR_ERR(gpiod);
}
mdiodev->reset = gpiod; mdiodev->reset = gpiod;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment