Skip to content
Snippets Groups Projects
Commit 06edf1a9 authored by Oleksij Rempel's avatar Oleksij Rempel Committed by David S. Miller
Browse files

net: phy: do not print dump stack if device was removed


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: default avatarOleksij Rempel <o.rempel@pengutronix.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d275afb6
No related branches found
No related tags found
No related merge requests found
...@@ -1136,6 +1136,9 @@ void phy_state_machine(struct work_struct *work) ...@@ -1136,6 +1136,9 @@ void phy_state_machine(struct work_struct *work)
else if (do_suspend) else if (do_suspend)
phy_suspend(phydev); phy_suspend(phydev);
if (err == -ENODEV)
return;
if (err < 0) if (err < 0)
phy_error(phydev); phy_error(phydev);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment