diff options
author | Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | 2016-04-24 19:29:23 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-26 21:41:20 +0200 |
commit | 4914a584b1d66680532b20898cba1cf7d5ae63e4 (patch) | |
tree | ff1e8e53d3698cb845202943a8322588cccb8335 /drivers/net/phy | |
parent | xgene: get_phy_device() doesn't return NULL anymore (diff) | |
download | linux-4914a584b1d66680532b20898cba1cf7d5ae63e4.tar.xz linux-4914a584b1d66680532b20898cba1cf7d5ae63e4.zip |
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 <sergei.shtylyov@cogentembedded.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r-- | drivers/net/phy/fixed_phy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/fixed_phy.c b/drivers/net/phy/fixed_phy.c index fc07a8866020..9050f21e6f33 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); } |