aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhenzhong Duan <zhenzhong.duan@oracle.com>2019-11-04 17:09:37 +0800
committerJessica Yu <jeyu@kernel.org>2019-11-07 15:11:48 +0100
commite2854a1054ab171a2c5cad6e9b7f0c580bab409d (patch)
treea52979af7f47a163edd5d25122eba904fd02580f
parentexport: avoid code duplication in include/linux/export.h (diff)
downloadlinux-dev-e2854a1054ab171a2c5cad6e9b7f0c580bab409d.tar.xz
linux-dev-e2854a1054ab171a2c5cad6e9b7f0c580bab409d.zip
moduleparam: fix parameter description mismatch
The first parameter of module_param is @name, but @value is used in description. Fix it. Fixes: 546970bc6afc ("param: add kerneldoc to moduleparam.h") Signed-off-by: Zhenzhong Duan <zhenzhong.duan@oracle.com> Signed-off-by: Jessica Yu <jeyu@kernel.org>
-rw-r--r--include/linux/moduleparam.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/moduleparam.h b/include/linux/moduleparam.h
index 5ba250d9172a..e5c3e23919b8 100644
--- a/include/linux/moduleparam.h
+++ b/include/linux/moduleparam.h
@@ -100,11 +100,11 @@ struct kparam_array
/**
* module_param - typesafe helper for a module/cmdline parameter
- * @value: the variable to alter, and exposed parameter name.
+ * @name: the variable to alter, and exposed parameter name.
* @type: the type of the parameter
* @perm: visibility in sysfs.
*
- * @value becomes the module parameter, or (prefixed by KBUILD_MODNAME and a
+ * @name becomes the module parameter, or (prefixed by KBUILD_MODNAME and a
* ".") the kernel commandline parameter. Note that - is changed to _, so
* the user can use "foo-bar=1" even for variable "foo_bar".
*