diff options
author | Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> | 2016-04-24 13:29:23 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-26 15:41:20 -0400 |
commit | 4914a584b1d66680532b20898cba1cf7d5ae63e4 (patch) | |
tree | ff1e8e53d3698cb845202943a8322588cccb8335 /drivers/net/phy | |
parent | fb1116ab7cf55f9b022c2a2d40a0f0c4464eb201 (diff) |
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, | |||
328 | return ERR_PTR(ret); | 328 | return ERR_PTR(ret); |
329 | 329 | ||
330 | phy = get_phy_device(fmb->mii_bus, phy_addr, false); | 330 | phy = get_phy_device(fmb->mii_bus, phy_addr, false); |
331 | if (!phy || IS_ERR(phy)) { | 331 | if (IS_ERR(phy)) { |
332 | fixed_phy_del(phy_addr); | 332 | fixed_phy_del(phy_addr); |
333 | return ERR_PTR(-EINVAL); | 333 | return ERR_PTR(-EINVAL); |
334 | } | 334 | } |