[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20160802104836.26752-1-baolex.ni@intel.com>
Date: Tue, 2 Aug 2016 18:48:36 +0800
From: Baole Ni <baolex.ni@...el.com>
To: patrik.r.jakobsson@...il.com, airlied@...ux.ie,
sw0312.kim@...sung.com, kyungmin.park@...sung.com,
kgene@...nel.org, k.kozlowski@...sung.com,
dougthompson@...ssion.com, bp@...en8.de
Cc: dri-devel@...ts.freedesktop.org, linux-kernel@...r.kernel.org,
chuansheng.liu@...el.com, baolex.ni@...el.com, tiwai@...e.de,
architt@...eaurora.org
Subject: [PATCH 0195/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/gpu/drm/gma500/mdfld_dsi_output.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/gma500/mdfld_dsi_output.c b/drivers/gpu/drm/gma500/mdfld_dsi_output.c
index 907cb51..67b5d18 100644
--- a/drivers/gpu/drm/gma500/mdfld_dsi_output.c
+++ b/drivers/gpu/drm/gma500/mdfld_dsi_output.c
@@ -39,7 +39,7 @@
static int LABC_control = 1;
#ifdef MODULE
-module_param(LABC_control, int, 0644);
+module_param(LABC_control, int, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
#else
static int __init parse_LABC_control(char *arg)
--
2.9.2
Powered by blists - more mailing lists