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/atm/iphase.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/atm/iphase.c b/drivers/atm/iphase.c index 809dd1e..091752e 100644 --- a/drivers/atm/iphase.c +++ b/drivers/atm/iphase.c @@ -86,7 +86,7 @@ module_param(IA_TX_BUF, int, 0); module_param(IA_TX_BUF_SZ, int, 0); module_param(IA_RX_BUF, int, 0); module_param(IA_RX_BUF_SZ, int, 0); -module_param(IADebugFlag, uint, 0644); +module_param(IADebugFlag, uint, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH); MODULE_LICENSE("GPL"); -- 2.9.2
