From: Randy Dunlap Date: Fri, 17 Jul 2020 23:36:50 +0000 (-0700) Subject: modules: linux/moduleparam.h: drop duplicated word in a comment X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=c6a8b84da4c28bda61b842a089651c3ec9d89a48;p=linux.git modules: linux/moduleparam.h: drop duplicated word in a comment Drop the doubled word "the" in a comment. Signed-off-by: Randy Dunlap Cc: Jessica Yu Signed-off-by: Jessica Yu --- diff --git a/include/linux/moduleparam.h b/include/linux/moduleparam.h index 3ef917ff09647..1ad5aa3b86d9f 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).