Explorar o código

[PATCH] USB: fix ohci merge glitch

A patch re-organizing some parts of root hub initialization deleted the
code initializing the bus-neutral reboot/shutdown notifier for OHCI.
This patch just restores that deleted code.

Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
david-b@pacbell.net %!s(int64=20) %!d(string=hai) anos
pai
achega
edfd6aee1f
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      drivers/usb/host/ohci-hcd.c

+ 3 - 1
drivers/usb/host/ohci-hcd.c

@@ -673,8 +673,10 @@ retry:
 
 
 	ohci_dump (ohci, 1);
 	ohci_dump (ohci, 1);
 
 
-	if (ohci_to_hcd(ohci)->self.root_hub == NULL)
+	if (ohci_to_hcd(ohci)->self.root_hub == NULL) {
+		register_reboot_notifier (&ohci->reboot_notifier);
 		create_debug_files (ohci);
 		create_debug_files (ohci);
+	}
 
 
 	return 0;
 	return 0;
 }
 }