[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20160802104156.21551-1-baolex.ni@intel.com>
Date: Tue, 2 Aug 2016 18:41:56 +0800
From: Baole Ni <baolex.ni@...el.com>
To: rjw@...ysocki.net, viresh.kumar@...aro.org,
jarkko.sakkinen@...ux.intel.com, jgunthorpe@...idianresearch.com,
hpa@...or.com, x86@...nel.org
Cc: linux-pm@...r.kernel.org, linux-kernel@...r.kernel.org,
chuansheng.liu@...el.com, baolex.ni@...el.com, jslaby@...e.cz,
peter@...sgaard.com, lee.jones@...aro.org
Subject: [PATCH 0117/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/cpufreq/e_powersaver.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/cpufreq/e_powersaver.c b/drivers/cpufreq/e_powersaver.c
index cdf097b..65467d0 100644
--- a/drivers/cpufreq/e_powersaver.c
+++ b/drivers/cpufreq/e_powersaver.c
@@ -414,15 +414,15 @@ static void __exit eps_exit(void)
/* Allow user to overclock his machine or to change frequency to higher after
* unloading module */
-module_param(freq_failsafe_off, int, 0644);
+module_param(freq_failsafe_off, int, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
MODULE_PARM_DESC(freq_failsafe_off, "Disable current vs max frequency check");
-module_param(voltage_failsafe_off, int, 0644);
+module_param(voltage_failsafe_off, int, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
MODULE_PARM_DESC(voltage_failsafe_off, "Disable current vs max voltage check");
#if IS_ENABLED(CONFIG_ACPI_PROCESSOR)
-module_param(ignore_acpi_limit, int, 0644);
+module_param(ignore_acpi_limit, int, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
MODULE_PARM_DESC(ignore_acpi_limit, "Don't check ACPI's processor speed limit");
#endif
-module_param(set_max_voltage, int, 0644);
+module_param(set_max_voltage, int, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
MODULE_PARM_DESC(set_max_voltage, "Set maximum CPU voltage (mV) C7-M only");
MODULE_AUTHOR("Rafal Bilski <rafalbilski@...eria.pl>");
--
2.9.2
Powered by blists - more mailing lists