projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4914a58
)
mdio_bus: get_phy_device() doesn't return NULL anymore
author
Sergei Shtylyov
<
[email protected]
>
Sun, 24 Apr 2016 17:30:53 +0000
(20:30 +0300)
committer
David S. Miller
<
[email protected]
>
Tue, 26 Apr 2016 19:41:20 +0000
(15:41 -0400)
Now that get_phy_device() no longer returns NULL on error, we don't need
to check for it...
Signed-off-by: Sergei Shtylyov <
[email protected]
>
Reviewed-by: Florian Fainelli <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
drivers/net/phy/mdio_bus.c
patch
|
blob
|
history
diff --git
a/drivers/net/phy/mdio_bus.c
b/drivers/net/phy/mdio_bus.c
index 751202a285a6a5d85800f1815bb80e75845bc5b9..499003ee8055455c9b5db9bfaaa45460a17aea73 100644
(file)
--- a/
drivers/net/phy/mdio_bus.c
+++ b/
drivers/net/phy/mdio_bus.c
@@
-419,7
+419,7
@@
struct phy_device *mdiobus_scan(struct mii_bus *bus, int addr)
int err;
phydev = get_phy_device(bus, addr, false);
- if (IS_ERR(phydev)
|| phydev == NULL
)
+ if (IS_ERR(phydev))
return phydev;
/*