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/video/fbdev/geode/gx1fb_core.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/video/fbdev/geode/gx1fb_core.c b/drivers/video/fbdev/geode/gx1fb_core.c index 9bee874..51f70e3 100644 --- a/drivers/video/fbdev/geode/gx1fb_core.c +++ b/drivers/video/fbdev/geode/gx1fb_core.c @@ -461,13 +461,13 @@ static void gx1fb_cleanup(void) module_init(gx1fb_init); module_exit(gx1fb_cleanup); -module_param_string(mode, mode_option, sizeof(mode_option), 0444); +module_param_string(mode, mode_option, sizeof(mode_option), S_IRUSR | S_IRGRP | S_IROTH); MODULE_PARM_DESC(mode, "video mode (<x>x<y>[-<bpp>][@<refr>])"); -module_param_named(crt, crt_option, int, 0444); +module_param_named(crt, crt_option, int, S_IRUSR | S_IRGRP | S_IROTH); MODULE_PARM_DESC(crt, "enable CRT output. 0 = off, 1 = on (default)"); -module_param_string(panel, panel_option, sizeof(panel_option), 0444); +module_param_string(panel, panel_option, sizeof(panel_option), S_IRUSR | S_IRGRP | S_IROTH); MODULE_PARM_DESC(panel, "size of attached flat panel (<x>x<y>)"); MODULE_DESCRIPTION("framebuffer driver for the AMD Geode GX1"); -- 2.9.2

