From: Derek Robson Date: Sun, 15 Jan 2017 07:16:38 +0000 (+1300) Subject: Drivers: staging: rtl8192e: style fix, octal file permissions X-Git-Tag: v4.11-rc1~116^2~353 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=5fbe4bfc62323fa9db28f933c5f392bf58bb7239;p=karo-tx-linux.git Drivers: staging: rtl8192e: style fix, octal file permissions Changed file permissions to octal. Found with checkpatch. Signed-off-by: Derek Robson Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c index 8a9172aa8178..2e05ec92ae20 100644 --- a/drivers/staging/rtl8192e/rtl8192e/rtl_core.c +++ b/drivers/staging/rtl8192e/rtl8192e/rtl_core.c @@ -2797,9 +2797,9 @@ MODULE_FIRMWARE(RTL8192E_BOOT_IMG_FW); MODULE_FIRMWARE(RTL8192E_MAIN_IMG_FW); MODULE_FIRMWARE(RTL8192E_DATA_IMG_FW); -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 WEP support(default use hw. set 0 to use software security)");