From: Sergei Shtylyov Date: Sun, 24 Apr 2016 17:29:23 +0000 (+0300) Subject: fixed_phy: get_phy_device() doesn't return NULL anymore X-Git-Tag: v4.7-rc1~154^2~193^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4914a584b1d66680532b20898cba1cf7d5ae63e4;p=thirdparty%2Fkernel%2Flinux.git fixed_phy: get_phy_device() doesn't return NULL anymore Now that get_phy_device() no longer returns NULL on error, we don't need to check for it... Signed-off-by: Sergei Shtylyov Reviewed-by: Florian Fainelli Signed-off-by: David S. Miller --- diff --git a/drivers/net/phy/fixed_phy.c b/drivers/net/phy/fixed_phy.c index fc07a88660204..9050f21e6f337 100644 --- a/drivers/net/phy/fixed_phy.c +++ b/drivers/net/phy/fixed_phy.c @@ -328,7 +328,7 @@ struct phy_device *fixed_phy_register(unsigned int irq, return ERR_PTR(ret); phy = get_phy_device(fmb->mii_bus, phy_addr, false); - if (!phy || IS_ERR(phy)) { + if (IS_ERR(phy)) { fixed_phy_del(phy_addr); return ERR_PTR(-EINVAL); }