Pārlūkot izejas kodu

[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>
Alan Stern 19 gadi atpakaļ
vecāks
revīzija
43c5d5aaaf
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      drivers/usb/core/hub.c

+ 1 - 1
drivers/usb/core/hub.c

@@ -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)