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 at intel.com>
Signed-off-by: Baole Ni <baolex.ni at intel.com>
---
 drivers/gpu/drm/drm_irq.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/drm_irq.c b/drivers/gpu/drm/drm_irq.c
index 0fac801c..c1c0fd9 100644
--- a/drivers/gpu/drm/drm_irq.c
+++ b/drivers/gpu/drm/drm_irq.c
@@ -70,9 +70,9 @@ unsigned int drm_timestamp_monotonic = 1;

 static int drm_vblank_offdelay = 5000;    /* Default to 5000 msecs. */

-module_param_named(vblankoffdelay, drm_vblank_offdelay, int, 0600);
-module_param_named(timestamp_precision_usec, drm_timestamp_precision, int, 
0600);
-module_param_named(timestamp_monotonic, drm_timestamp_monotonic, int, 0600);
+module_param_named(vblankoffdelay, drm_vblank_offdelay, int, S_IRUSR | 
S_IWUSR);
+module_param_named(timestamp_precision_usec, drm_timestamp_precision, int, 
S_IRUSR | S_IWUSR);
+module_param_named(timestamp_monotonic, drm_timestamp_monotonic, int, S_IRUSR 
| S_IWUSR);
 MODULE_PARM_DESC(vblankoffdelay, "Delay until vblank irq auto-disable [msecs] 
(0: never disable, <0: disable immediately)");
 MODULE_PARM_DESC(timestamp_precision_usec, "Max. error on timestamps [usecs]");
 MODULE_PARM_DESC(timestamp_monotonic, "Use monotonic timestamps");
-- 
2.9.2

Reply via email to