1
0
Fork 0

[PATCH] usbcore: fix compile error with CONFIG_USB_SUSPEND=n

This patch (as647) fixes a small error introduced by a recent change to
the USB core suspend/resume code.

Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
hifive-unleashed-5.1
Alan Stern 2006-02-01 10:47:11 -05:00 committed by Greg Kroah-Hartman
parent 6a8e87b23f
commit 43c5d5aaaf
1 changed files with 1 additions and 1 deletions

View File

@ -1892,8 +1892,8 @@ int usb_resume_device(struct usb_device *udev)
status = hub_port_resume(hdev_to_hub(udev->parent),
udev->portnum, udev);
} else
status = 0;
#endif
status = 0;
} else
status = finish_device_resume(udev);
if (status < 0)