wireless: Use octal not symbolic permissions
Prefer the direct use of octal for permissions. Done with checkpatch -f --types=SYMBOLIC_PERMS --fix-inplace and some typing. Miscellanea: o Whitespace neatening around these conversions. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
@@ -48,11 +48,11 @@
|
||||
#include "cmd.h"
|
||||
|
||||
static bool modparam_nohwcrypt;
|
||||
module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
|
||||
module_param_named(nohwcrypt, modparam_nohwcrypt, bool, 0444);
|
||||
MODULE_PARM_DESC(nohwcrypt, "Disable hardware crypto offload.");
|
||||
|
||||
int modparam_noht;
|
||||
module_param_named(noht, modparam_noht, int, S_IRUGO);
|
||||
module_param_named(noht, modparam_noht, int, 0444);
|
||||
MODULE_PARM_DESC(noht, "Disable MPDU aggregation.");
|
||||
|
||||
#define RATE(_bitrate, _hw_rate, _txpidx, _flags) { \
|
||||
|
Reference in New Issue
Block a user