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/media/pci/pt3/pt3.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/pci/pt3/pt3.c b/drivers/media/pci/pt3/pt3.c index eff5e9f..feddb59 100644 --- a/drivers/media/pci/pt3/pt3.c +++ b/drivers/media/pci/pt3/pt3.c @@ -32,11 +32,11 @@ DVB_DEFINE_MOD_OPT_ADAPTER_NR(adapter_nr); static bool one_adapter; -module_param(one_adapter, bool, 0444); +module_param(one_adapter, bool, S_IRUSR | S_IRGRP | S_IROTH); MODULE_PARM_DESC(one_adapter, "Place FE's together under one adapter."); static int num_bufs = 4; -module_param(num_bufs, int, 0444); +module_param(num_bufs, int, S_IRUSR | S_IRGRP | S_IROTH); MODULE_PARM_DESC(num_bufs, "Number of DMA buffer (188KiB) per FE."); -- 2.9.2

