mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
USB: RESET_RESUME needs to block autosuspend when remote wakeup is needed
Reset upon resumption will wipe the input buffer and is therefore a reason to not suspend if remote wakeup is requested because the driver needs that data. Signed-off-by: Oliver Neukum <oneukum@suse.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
682650437e
commit
399d31da4e
@ -1070,7 +1070,8 @@ static int autosuspend_check(struct usb_device *udev, int reschedule)
|
||||
struct usb_driver *driver;
|
||||
|
||||
driver = to_usb_driver(intf->dev.driver);
|
||||
if (!driver->reset_resume)
|
||||
if (!driver->reset_resume ||
|
||||
intf->needs_remote_wakeup)
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user