[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20160802105717.772-1-baolex.ni@intel.com>
Date: Tue, 2 Aug 2016 18:57:17 +0800
From: Baole Ni <baolex.ni@...el.com>
To: dmitry.torokhov@...il.com, hal.rosenstock@...il.com,
dledford@...hat.com, sean.hefty@...el.com, bp@...en8.de
Cc: linux-input@...r.kernel.org, linux-kernel@...r.kernel.org,
chuansheng.liu@...el.com, baolex.ni@...el.com, broonie@...nel.org,
afd@...com, javier@....samsung.com
Subject: [PATCH 0291/1285] Replace numeric parameter like 0444 with macro
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 <chuansheng.liu@...el.com>
Signed-off-by: Baole Ni <baolex.ni@...el.com>
---
drivers/input/touchscreen/eeti_ts.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/input/touchscreen/eeti_ts.c b/drivers/input/touchscreen/eeti_ts.c
index 09be6ce..054b815 100644
--- a/drivers/input/touchscreen/eeti_ts.c
+++ b/drivers/input/touchscreen/eeti_ts.c
@@ -36,11 +36,11 @@
#include <linux/slab.h>
static bool flip_x;
-module_param(flip_x, bool, 0644);
+module_param(flip_x, bool, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
MODULE_PARM_DESC(flip_x, "flip x coordinate");
static bool flip_y;
-module_param(flip_y, bool, 0644);
+module_param(flip_y, bool, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
MODULE_PARM_DESC(flip_y, "flip y coordinate");
struct eeti_ts_priv {
--
2.9.2
Powered by blists - more mailing lists