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:
@@ -51,7 +51,7 @@ MODULE_PARM_DESC(txglomsz, "Maximum tx packet chain size [SDIO]");
|
||||
|
||||
/* Debug level configuration. See debug.h for bits, sysfs modifiable */
|
||||
int brcmf_msg_level;
|
||||
module_param_named(debug, brcmf_msg_level, int, S_IRUSR | S_IWUSR);
|
||||
module_param_named(debug, brcmf_msg_level, int, 0600);
|
||||
MODULE_PARM_DESC(debug, "Level of debug output");
|
||||
|
||||
static int brcmf_p2p_enable;
|
||||
@@ -64,7 +64,7 @@ MODULE_PARM_DESC(feature_disable, "Disable features");
|
||||
|
||||
static char brcmf_firmware_path[BRCMF_FW_ALTPATH_LEN];
|
||||
module_param_string(alternative_fw_path, brcmf_firmware_path,
|
||||
BRCMF_FW_ALTPATH_LEN, S_IRUSR);
|
||||
BRCMF_FW_ALTPATH_LEN, 0400);
|
||||
MODULE_PARM_DESC(alternative_fw_path, "Alternative firmware path");
|
||||
|
||||
static int brcmf_fcmode;
|
||||
@@ -72,7 +72,7 @@ module_param_named(fcmode, brcmf_fcmode, int, 0);
|
||||
MODULE_PARM_DESC(fcmode, "Mode of firmware signalled flow control");
|
||||
|
||||
static int brcmf_roamoff;
|
||||
module_param_named(roamoff, brcmf_roamoff, int, S_IRUSR);
|
||||
module_param_named(roamoff, brcmf_roamoff, int, 0400);
|
||||
MODULE_PARM_DESC(roamoff, "Do not use internal roaming engine");
|
||||
|
||||
#ifdef DEBUG
|
||||
|
@@ -214,7 +214,7 @@ brcms_debugfs_add_entry(struct brcms_pub *drvr, const char *fn,
|
||||
entry->read = read_fn;
|
||||
entry->drvr = drvr;
|
||||
|
||||
dentry = debugfs_create_file(fn, S_IRUGO, dentry, entry,
|
||||
dentry = debugfs_create_file(fn, 0444, dentry, entry,
|
||||
&brcms_debugfs_def_ops);
|
||||
|
||||
return PTR_ERR_OR_ZERO(dentry);
|
||||
|
@@ -108,7 +108,7 @@ MODULE_DEVICE_TABLE(bcma, brcms_coreid_table);
|
||||
* flags are specified by the BRCM_DL_* macros in
|
||||
* drivers/net/wireless/brcm80211/include/defs.h.
|
||||
*/
|
||||
module_param_named(debug, brcm_msg_level, uint, S_IRUGO | S_IWUSR);
|
||||
module_param_named(debug, brcm_msg_level, uint, 0644);
|
||||
#endif
|
||||
|
||||
static struct ieee80211_channel brcms_2ghz_chantable[] = {
|
||||
|
Reference in New Issue
Block a user