Commit 74e22fac authored by Joe Perches's avatar Joe Perches Committed by Rusty Russell

module.h: Remove unnecessary semicolon

[All 8 callers already have semicolons. -- RR]
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 88a88b32
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment