From: Peter Huewe <peterhuewe@xxxxxx> Trivial patch which adds the __init/__exit macros to the module_init/ module_exit functions of drivers/misc/hwlat_detector.c Please have a look at the small patch and either pull it through your tree, or please ack' it so Jiri can pull it through the trivial tree. Patch against linux-next-tree, 22. Dez 08:38:18 CET 2009 but also present in linus tree. Signed-off-by: Peter Huewe <peterhuewe@xxxxxx> --- drivers/misc/hwlat_detector.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/misc/hwlat_detector.c b/drivers/misc/hwlat_detector.c index e02d8e1..fd6fa6f 100644 --- a/drivers/misc/hwlat_detector.c +++ b/drivers/misc/hwlat_detector.c @@ -1163,7 +1163,7 @@ static void free_debugfs(void) /** * detector_init - Standard module initialization code */ -static int detector_init(void) +static int __init detector_init(void) { int ret = -ENOMEM; @@ -1192,7 +1192,7 @@ out: /** * detector_exit - Standard module cleanup code */ -static void detector_exit(void) +static void __exit detector_exit(void) { if (enabled) { enabled = 0; -- 1.6.4.4 -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html