Commit 8c1d92a7 authored by Douglas Anderson's avatar Douglas Anderson Committed by Jakub Kicinski

r8152: Wake up the system if the we need a reset

If we get to the end of the r8152's suspend() routine and we find that
the USB device is INACCESSIBLE then it means that some of our
preparation for suspend didn't take place. We need a USB reset to get
ourselves back in a consistent state so we can try again and that
can't happen during system suspend. Call pm_wakeup_event() to wake the
system up in this case.
Signed-off-by: default avatarDouglas Anderson <dianders@chromium.org>
Acked-by: default avatarHayes Wang <hayeswang@realtek.com>
Link: https://lore.kernel.org/r/66590f25.170a0220.8b5ad.1752@mx.google.comSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 4933b066
......@@ -8647,6 +8647,13 @@ static int rtl8152_system_suspend(struct r8152 *tp)
tasklet_enable(&tp->tx_tl);
}
/* If we're inaccessible here then some of the work that we did to
* get the adapter ready for suspend didn't work. Queue up a wakeup
* event so we can try again.
*/
if (test_bit(RTL8152_INACCESSIBLE, &tp->flags))
pm_wakeup_event(&tp->udev->dev, 0);
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment