projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d275afb
)
net: phy: do not print dump stack if device was removed
author
Oleksij Rempel
<o.rempel@pengutronix.de>
Mon, 7 Jun 2021 08:27:26 +0000
(10:27 +0200)
committer
David S. Miller
<davem@davemloft.net>
Mon, 7 Jun 2021 20:23:02 +0000
(13:23 -0700)
In case phy_state_machine() works on top of USB device, we can get -ENODEV
at any point. So, be less noisy if device was removed.
Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/phy.c
patch
|
blob
|
history
diff --git
a/drivers/net/phy/phy.c
b/drivers/net/phy/phy.c
index 1f0512e39c6516d1d8579ce5836b294fb6a658d7..1089a93d12f6958f6d0dd8a4235f82cafdb6443c 100644
(file)
--- a/
drivers/net/phy/phy.c
+++ b/
drivers/net/phy/phy.c
@@
-1136,6
+1136,9
@@
void phy_state_machine(struct work_struct *work)
else if (do_suspend)
phy_suspend(phydev);
+ if (err == -ENODEV)
+ return;
+
if (err < 0)
phy_error(phydev);