DORMANTno replies

[PATCH 0127/1285] Replace numeric parameter like 0444 with macro

From: Baole Ni <hidden>
Date: 2016-08-02 17:33:31
Also in: lkml
Subsystem: amd cryptographic coprocessor (ccp) driver, crypto api, the rest · Maintainers: Tom Lendacky, John Allen, Herbert Xu, "David S. Miller", Linus Torvalds

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 <redacted>
Signed-off-by: Baole Ni <redacted>
---
 drivers/crypto/ccp/ccp-crypto-main.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/crypto/ccp/ccp-crypto-main.c b/drivers/crypto/ccp/ccp-crypto-main.c
index e0380e5..34e130c 100644
--- a/drivers/crypto/ccp/ccp-crypto-main.c
+++ b/drivers/crypto/ccp/ccp-crypto-main.c
@@ -26,11 +26,11 @@ MODULE_VERSION("1.0.0");
 MODULE_DESCRIPTION("AMD Cryptographic Coprocessor crypto API support");
 
 static unsigned int aes_disable;
-module_param(aes_disable, uint, 0444);
+module_param(aes_disable, uint, S_IRUSR | S_IRGRP | S_IROTH);
 MODULE_PARM_DESC(aes_disable, "Disable use of AES - any non-zero value");
 
 static unsigned int sha_disable;
-module_param(sha_disable, uint, 0444);
+module_param(sha_disable, uint, S_IRUSR | S_IRGRP | S_IROTH);
 MODULE_PARM_DESC(sha_disable, "Disable use of SHA - any non-zero value");
 
 /* List heads for the supported algorithms */
-- 
2.9.2
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help