]> Pileus Git - ~andy/linux/commitdiff
module.h: Remove unnecessary semicolon
authorJoe Perches <joe@perches.com>
Wed, 4 Dec 2013 03:39:38 +0000 (14:09 +1030)
committerRusty Russell <rusty@rustcorp.com.au>
Wed, 4 Dec 2013 03:39:46 +0000 (14:09 +1030)
[All 8 callers already have semicolons. -- RR]

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
include/linux/module.h

index 15cd6b1b211e731c5c133dabd0d26e890a56e135..46e548fd502a0157c40869789ae128a323ff1aa6 100644 (file)
@@ -451,7 +451,7 @@ int module_kallsyms_on_each_symbol(int (*fn)(void *, const char *,
 
 extern void __module_put_and_exit(struct module *mod, long code)
        __attribute__((noreturn));
-#define module_put_and_exit(code) __module_put_and_exit(THIS_MODULE, code);
+#define module_put_and_exit(code) __module_put_and_exit(THIS_MODULE, code)
 
 #ifdef CONFIG_MODULE_UNLOAD
 unsigned long module_refcount(struct module *mod);