I find that the developers often just specified the numeric value when calling a macro which is defined with a parameter for access permission. As we know, these numeric value for access permission have had the corresponding macro, and that using macro can improve the robustness and readability of the code, thus, I suggest replacing the numeric parameter with the macro.
Signed-off-by: Chuansheng Liu <[email protected]> Signed-off-by: Baole Ni <[email protected]> --- drivers/input/touchscreen/htcpen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/input/touchscreen/htcpen.c b/drivers/input/touchscreen/htcpen.c index 92e2243..b2e63f3 100644 --- a/drivers/input/touchscreen/htcpen.c +++ b/drivers/input/touchscreen/htcpen.c @@ -41,10 +41,10 @@ MODULE_LICENSE("GPL"); #define Y_AXIS_MAX 2040 static bool invert_x; -module_param(invert_x, bool, 0644); +module_param(invert_x, bool, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); MODULE_PARM_DESC(invert_x, "If set, X axis is inverted"); static bool invert_y; -module_param(invert_y, bool, 0644); +module_param(invert_y, bool, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); MODULE_PARM_DESC(invert_y, "If set, Y axis is inverted"); static irqreturn_t htcpen_interrupt(int irq, void *handle) -- 2.9.2

