Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit edfd6aee authored by David Brownell's avatar David Brownell Committed by Greg Kroah-Hartman
Browse files

[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: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent b404a5b0
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -673,8 +673,10 @@ static int ohci_run (struct ohci_hcd *ohci)

	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);
	}

	return 0;
}