summaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre/lnet/selftest/module.c
diff options
context:
space:
mode:
authorJames Simmons <jsimmons@infradead.org>2016-02-26 11:36:03 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-03-01 19:19:17 -0800
commit5b0e50b96496427302500b668d834cbc816ea3e3 (patch)
treefdbe81327af000b25cc9de00037a518aabbe101a /drivers/staging/lustre/lnet/selftest/module.c
parent9911da0f434e9e6630371bce1c031ba62d8f06b6 (diff)
downloadlinux-5b0e50b96496427302500b668d834cbc816ea3e3.tar.bz2
staging: lustre: add missing MODULE_AUTHOR for LNet selftest module
For several lustre modules the MODULE_VERSION has the wrong value, located in the wrong place in the source code, or completely missing. This patch brings it up to date. Signed-off-by: James Simmons <uja.ornl@yahoo.com> Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-6204 Reviewed-on: http://review.whamcloud.com/16729 Reviewed-by: Andreas Dilger <andreas.dilger@intel.com> Reviewed-by: John L. Hammond <john.hammond@intel.com> Reviewed-by: Frank Zago <fzago@cray.com> Reviewed-by: Oleg Drokin <oleg.drokin@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre/lnet/selftest/module.c')
-rw-r--r--drivers/staging/lustre/lnet/selftest/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/lustre/lnet/selftest/module.c b/drivers/staging/lustre/lnet/selftest/module.c
index 3e48b0a803cf..05c1de164881 100644
--- a/drivers/staging/lustre/lnet/selftest/module.c
+++ b/drivers/staging/lustre/lnet/selftest/module.c
@@ -150,8 +150,8 @@ error:
MODULE_AUTHOR("OpenSFS, Inc. <http://www.lustre.org/>");
MODULE_DESCRIPTION("LNet Selftest");
+MODULE_VERSION("2.7.0");
MODULE_LICENSE("GPL");
-MODULE_VERSION("0.9.0");
module_init(lnet_selftest_init);
module_exit(lnet_selftest_fini);