All of lore.kernel.org
 help / color / mirror / Atom feed
* [trivial PATCH] module.h: Remove unnecessary semicolon
@ 2013-11-05 20:58 Joe Perches
  2013-11-07  2:02 ` Rusty Russell
  0 siblings, 1 reply; 7+ messages in thread
From: Joe Perches @ 2013-11-05 20:58 UTC (permalink / raw)
  To: Rusty Russell; +Cc: LKML

This semicolon isn't necessary, remove it.

Signed-off-by: Joe Perches <joe@perches.com>
---
 include/linux/module.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/module.h b/include/linux/module.h
index 05f2447..d1ad477 100644
--- a/include/linux/module.h
+++ b/include/linux/module.h
@@ -454,7 +454,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);



^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2013-11-08  1:48 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-05 20:58 [trivial PATCH] module.h: Remove unnecessary semicolon Joe Perches
2013-11-07  2:02 ` Rusty Russell
2013-11-07  5:09   ` Joe Perches
2013-11-07 23:11     ` Rusty Russell
2013-11-07 23:59       ` Joe Perches
2013-11-08  1:26         ` Rusty Russell
2013-11-08  1:48           ` Joe Perches

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.