On Wed, Mar 13, 2002 at 03:12:23PM -0800, Greg KH wrote:
> [EMAIL PROTECTED], 2002-03-11 19:46:01-06:00, [EMAIL PROTECTED]
>   Make USB core init an subsys_initcall, like the other buses.
>   
>   As it's linked after PCI, usb_init() will be called after pci_init(),
>   which is an subsys_initcall, too. Subtle, but right.
> 
>  drivers/usb/usb.c |    2 +-
>  1 files changed, 1 insertion(+), 1 deletion(-)



# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
#                  ChangeSet    1.384   -> 1.384.6.1
#          drivers/usb/usb.c    1.35    -> 1.36   
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 02/03/11      [EMAIL PROTECTED]      1.384.6.1
# Make USB core init an subsys_initcall, like the other buses.
# 
# As it's linked after PCI, usb_init() will be called after pci_init(),
# which is an subsys_initcall, too. Subtle, but right.
# --------------------------------------------
#
diff -Nru a/drivers/usb/usb.c b/drivers/usb/usb.c
--- a/drivers/usb/usb.c Wed Mar 13 15:03:21 2002
+++ b/drivers/usb/usb.c Wed Mar 13 15:03:21 2002
@@ -2614,7 +2614,7 @@
        usb_hub_cleanup();
 }
 
-module_init(usb_init);
+subsys_initcall(usb_init);
 module_exit(usb_exit);
 
 /*

_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to