diff options
author | Xavier Roumegue <xroumegue@gmail.com> | 2016-09-19 14:49:24 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-20 13:33:49 +0200 |
commit | 182eec0eb75fc17455ff4d77f5e37ae4f0c5ea1c (patch) | |
tree | 6cd650ff5b221c9d6ff2d1eb3373353a84637610 /drivers/staging/rtl8192u | |
parent | 177aa53a0d11b258a6615a042380fe7abf15d780 (diff) | |
download | talos-obmc-linux-182eec0eb75fc17455ff4d77f5e37ae4f0c5ea1c.tar.gz talos-obmc-linux-182eec0eb75fc17455ff4d77f5e37ae4f0c5ea1c.zip |
staging: rtl8192u: r8192U_core: fix checkpatch permission warnings
Fix the following warnings:
Symbolic permissions are not preferred. Consider using octal permissions.
Signed-off-by: Xavier Roumegue <xroumegue@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8192u')
-rw-r--r-- | drivers/staging/rtl8192u/r8192U_core.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8192u/r8192U_core.c b/drivers/staging/rtl8192u/r8192U_core.c index b86b28ae7d7b..cdb64e3e0d18 100644 --- a/drivers/staging/rtl8192u/r8192U_core.c +++ b/drivers/staging/rtl8192u/r8192U_core.c @@ -114,9 +114,9 @@ static int channels = 0x3fff; -module_param(ifname, charp, S_IRUGO | S_IWUSR); -module_param(hwwep, int, S_IRUGO | S_IWUSR); -module_param(channels, int, S_IRUGO | S_IWUSR); +module_param(ifname, charp, 0644); +module_param(hwwep, int, 0644); +module_param(channels, int, 0644); MODULE_PARM_DESC(ifname, " Net interface name, wlan%d=default"); MODULE_PARM_DESC(hwwep, " Try to use hardware security support. "); |