lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 28 Sep 2006 23:33:33 -0700
From:	David Brownell <david-b@...bell.net>
To:	Alessandro Zummo <alessandro.zummo@...ertech.it>
Cc:	Linux Kernel list <linux-kernel@...r.kernel.org>,
	Andrew Morton <akpm@...l.org>
Subject: [patch 2.6.18-git] RTC class uses subsys_init

[RESEND] 

This makes RTC core components use "subsys_init" instead of "module_init",
as appropriate for subsystem infrastructure.  This is mostly useful for
statically linking drivers in other parts of the tree that may provide an
RTC interface as a secondary functionality (e.g. part of a multifunction
chip); they won't need to worry so much about drivers/Makefile link order.

Signed-off-by: David Brownell <dbrownell@...rs.sourceforge.net>

Index: linux/drivers/rtc/class.c
===================================================================
--- linux.orig/drivers/rtc/class.c	2006-07-30 16:08:47.000000000 -0700
+++ linux/drivers/rtc/class.c	2006-07-30 16:15:50.000000000 -0700
@@ -142,9 +142,9 @@
 	class_destroy(rtc_class);
 }
 
-module_init(rtc_init);
+subsys_initcall(rtc_init);
 module_exit(rtc_exit);
 
-MODULE_AUTHOR("Alessandro Zummo <a.zummo@...erteh.it>");
+MODULE_AUTHOR("Alessandro Zummo <a.zummo@...ertech.it>");
 MODULE_DESCRIPTION("RTC class support");
 MODULE_LICENSE("GPL");
Index: linux/drivers/rtc/rtc-dev.c
===================================================================
--- linux.orig/drivers/rtc/rtc-dev.c	2006-07-30 16:08:47.000000000 -0700
+++ linux/drivers/rtc/rtc-dev.c	2006-07-30 16:15:50.000000000 -0700
@@ -496,7 +496,7 @@
 	unregister_chrdev_region(rtc_devt, RTC_DEV_MAX);
 }
 
-module_init(rtc_dev_init);
+subsys_initcall(rtc_dev_init);
 module_exit(rtc_dev_exit);
 
 MODULE_AUTHOR("Alessandro Zummo <a.zummo@...ertech.it>");
Index: linux/drivers/rtc/rtc-proc.c
===================================================================
--- linux.orig/drivers/rtc/rtc-proc.c	2006-07-30 16:08:47.000000000 -0700
+++ linux/drivers/rtc/rtc-proc.c	2006-07-30 16:15:50.000000000 -0700
@@ -156,7 +156,7 @@
 	class_interface_unregister(&rtc_proc_interface);
 }
 
-module_init(rtc_proc_init);
+subsys_initcall(rtc_proc_init);
 module_exit(rtc_proc_exit);
 
 MODULE_AUTHOR("Alessandro Zummo <a.zummo@...ertech.it>");
Index: linux/drivers/rtc/rtc-sysfs.c
===================================================================
--- linux.orig/drivers/rtc/rtc-sysfs.c	2006-07-30 16:08:47.000000000 -0700
+++ linux/drivers/rtc/rtc-sysfs.c	2006-07-30 16:15:50.000000000 -0700
@@ -116,7 +116,7 @@
 	class_interface_unregister(&rtc_sysfs_interface);
 }
 
-module_init(rtc_sysfs_init);
+subsys_init(rtc_sysfs_init);
 module_exit(rtc_sysfs_exit);
 
 MODULE_AUTHOR("Alessandro Zummo <a.zummo@...ertech.it>");
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists