summaryrefslogtreecommitdiffstats
path: root/include/linux/moduleparam.h
diff options
context:
space:
mode:
authorDan Streetman2015-06-16 22:47:52 +0200
committerRusty Russell2015-06-23 07:57:37 +0200
commit5104b7d7678b0029417f6ac08243773a77259ac6 (patch)
treebf1a7a2703674d474db5618302cf8b5acf3f8adc /include/linux/moduleparam.h
parentparams: suppress unused variable error, warn once just in case code changes. (diff)
downloadkernel-qcow2-linux-5104b7d7678b0029417f6ac08243773a77259ac6.tar.gz
kernel-qcow2-linux-5104b7d7678b0029417f6ac08243773a77259ac6.tar.xz
kernel-qcow2-linux-5104b7d7678b0029417f6ac08243773a77259ac6.zip
module: make perm const
Change the struct kernel_param.perm field to a const, as it should never be changed. Signed-off-by: Dan Streetman <ddstreet@ieee.org> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> (cut from larger patch)
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 7e0079936396..ab5031453807 100644
--- a/include/linux/moduleparam.h
+++ b/include/linux/moduleparam.h
@@ -68,7 +68,7 @@ enum {
struct kernel_param {
const char *name;
const struct kernel_param_ops *ops;
- u16 perm;
+ const u16 perm;
s8 level;
u8 flags;
union {