[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <1299763593-3356-2-git-send-email-balbi@ti.com>
Date: Thu, 10 Mar 2011 15:26:33 +0200
From: Felipe Balbi <balbi@...com>
To: Jiri Kosina <trivial@...nel.org>
Cc: Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
Felipe Balbi <balbi@...com>
Subject: [PATCH 2/2] init: drop trailing semicolon from module_init/module_exit
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@...com>
---
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 577671c5..8532f7c 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.4.rc2
--
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