[PATCH] usbcore: fix compile error with CONFIG_USB_SUSPEND=n
authorAlan Stern <stern@rowland.harvard.edu>
Wed, 1 Feb 2006 15:47:11 +0000 (10:47 -0500)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 20 Mar 2006 22:49:58 +0000 (14:49 -0800)
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>
drivers/usb/core/hub.c

index f1d64d4..7dd28f8 100644 (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)