[PATCH 2/2] init: drop trailing semicolon from module_init/module_exit

From: Felipe Balbi
Date: Thu Jun 16 2011 - 05:45:39 EST


now that all drivers add ; to the end of module_init()
and module_exit(), we can safely remove it from the
definition.

Signed-off-by: Felipe Balbi <balbi@xxxxxx>
---
include/linux/init.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/linux/init.h b/include/linux/init.h
index 9146f39..f04e760 100644
--- a/include/linux/init.h
+++ b/include/linux/init.h
@@ -263,7 +263,7 @@ void __init parse_early_options(char *cmdline);
* builtin) or at module insertion time (if a module). There can only
* be one per module.
*/
-#define module_init(x) __initcall(x);
+#define module_init(x) __initcall(x)

/**
* module_exit() - driver exit entry point
@@ -275,7 +275,7 @@ void __init parse_early_options(char *cmdline);
* compiled into the kernel, module_exit() has no effect.
* There can only be one per module.
*/
-#define module_exit(x) __exitcall(x);
+#define module_exit(x) __exitcall(x)

#else /* MODULE */

--
1.7.6.rc1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/