diff options
author | Joe Perches <joe@perches.com> | 2013-12-04 07:39:38 +0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2013-12-04 07:39:46 +0400 |
commit | 74e22fac8858f83af9b589f1dcb004ccf4991003 (patch) | |
tree | 76591fbd34f98a07fe668712d659ce4551be7bef /include/linux/module.h | |
parent | 88a88b320a9068294aaa2841464e4809af2ff454 (diff) | |
download | linux-74e22fac8858f83af9b589f1dcb004ccf4991003.tar.xz |
module.h: Remove unnecessary semicolon
[All 8 callers already have semicolons. -- RR]
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'include/linux/module.h')
-rw-r--r-- | include/linux/module.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/module.h b/include/linux/module.h index 15cd6b1b211e..46e548fd502a 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -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); |