From: Alan Stern This patch (as647) fixes a small error introduced by a recent change to the USB core suspend/resume code. Signed-off-by: Alan Stern Signed-off-by: Andrew Morton --- drivers/usb/core/hub.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/usb/core/hub.c~gregkh-usb-usb-remove-usbcore-specific-wakeup-flags-fix drivers/usb/core/hub.c --- 25/drivers/usb/core/hub.c~gregkh-usb-usb-remove-usbcore-specific-wakeup-flags-fix Thu Feb 2 15:41:43 2006 +++ 25-akpm/drivers/usb/core/hub.c Thu Feb 2 15:41:43 2006 @@ -1890,8 +1890,8 @@ int usb_resume_device(struct usb_device 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) _