aboutsummaryrefslogtreecommitdiffstats
path: root/net/dsa/dsa.c
diff options
context:
space:
mode:
authorRusty Russell <[email protected]>2011-01-24 20:32:52 +0000
committerRusty Russell <[email protected]>2011-01-24 04:02:54 +0000
commit577d6a7c3a0e273e115c65a148b71be6c1950f69 (patch)
tree3094a0b019ab4f81a2a0bc460635b9ee56cd2768 /net/dsa/dsa.c
parentparam: add null statement to compiled-in module params (diff)
downloadkernel-577d6a7c3a0e273e115c65a148b71be6c1950f69.tar.gz
kernel-577d6a7c3a0e273e115c65a148b71be6c1950f69.zip
module: fix missing semicolons in MODULE macro usage
You always needed them when you were a module, but the builtin versions of the macros used to be more lenient. Reported-by: Stephen Rothwell <[email protected]> Signed-off-by: Rusty Russell <[email protected]>
Diffstat (limited to 'net/dsa/dsa.c')
-rw-r--r--net/dsa/dsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c
index 0c877a74e1f4..3fb14b7c13cf 100644
--- a/net/dsa/dsa.c
+++ b/net/dsa/dsa.c
@@ -428,7 +428,7 @@ static void __exit dsa_cleanup_module(void)
}
module_exit(dsa_cleanup_module);
-MODULE_AUTHOR("Lennert Buytenhek <[email protected]>")
+MODULE_AUTHOR("Lennert Buytenhek <[email protected]>");
MODULE_DESCRIPTION("Driver for Distributed Switch Architecture switch chips");
MODULE_LICENSE("GPL");
MODULE_ALIAS("platform:dsa");