aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRandy Dunlap <rdunlap@infradead.org>2020-07-17 16:36:50 -0700
committerJessica Yu <jeyu@kernel.org>2020-07-20 10:39:54 +0200
commitc6a8b84da4c28bda61b842a089651c3ec9d89a48 (patch)
tree9c196b9af9ea1a25e7fb01a70a54701922b48916
parentLinux 5.8-rc1 (diff)
downloadlinux-dev-c6a8b84da4c28bda61b842a089651c3ec9d89a48.tar.xz
linux-dev-c6a8b84da4c28bda61b842a089651c3ec9d89a48.zip
modules: linux/moduleparam.h: drop duplicated word in a comment
Drop the doubled word "the" in a comment. Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Cc: Jessica Yu <jeyu@kernel.org> Signed-off-by: Jessica Yu <jeyu@kernel.org>
-rw-r--r--include/linux/moduleparam.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/moduleparam.h b/include/linux/moduleparam.h
index 3ef917ff0964..1ad5aa3b86d9 100644
--- a/include/linux/moduleparam.h
+++ b/include/linux/moduleparam.h
@@ -108,7 +108,7 @@ struct kparam_array
* ".") the kernel commandline parameter. Note that - is changed to _, so
* the user can use "foo-bar=1" even for variable "foo_bar".
*
- * @perm is 0 if the the variable is not to appear in sysfs, or 0444
+ * @perm is 0 if the variable is not to appear in sysfs, or 0444
* for world-readable, 0644 for root-writable, etc. Note that if it
* is writable, you may need to use kernel_param_lock() around
* accesses (esp. charp, which can be kfreed when it changes).