summaryrefslogtreecommitdiffstats
path: root/include/linux/moduleparam.h
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2020-08-25 11:00:43 +0100
committerMark Brown <broonie@kernel.org>2020-08-25 11:00:43 +0100
commit1959ba4e40ce40c380dbe868433f5c4b20bb1ba3 (patch)
tree0bd58aa5433f8d4c207c058c259ec18fcba3e0f2 /include/linux/moduleparam.h
parent0235bc04627d02a08f7ad9d226a8fe78e6c4a1c3 (diff)
parentd012a7190fc1fd72ed48911e77ca97ba4521bccd (diff)
downloadcachepc-linux-1959ba4e40ce40c380dbe868433f5c4b20bb1ba3.tar.gz
cachepc-linux-1959ba4e40ce40c380dbe868433f5c4b20bb1ba3.zip
Merge tag 'v5.9-rc2' into asoc-5.9
Linux 5.9-rc2
Diffstat (limited to 'include/linux/moduleparam.h')
-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).