lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Mon, 18 Jan 2021 02:09:54 +0100 From: Johannes Czekay <johannes.czekay@....de> To: gregkh@...uxfoundation.org Cc: nicolai.fischer@....de, johannes.czekay@....de, jbwyatt4@...il.com, rkovhaev@...il.com, hqjagain@...il.com, gustavo@...eddedor.com, devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org, linux-kernel@...cs.fau.de Subject: [PATCH 4/6] wlan-ng: clean up line length This patch cleans up all remaining line length related warnings. Signed-off-by: Johannes Czekay <johannes.czekay@....de> Co-developed-by: Nicolai Fischer <nicolai.fischer@....de> Signed-off-by: Nicolai Fischer <nicolai.fischer@....de> --- drivers/staging/wlan-ng/cfg80211.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/wlan-ng/cfg80211.c b/drivers/staging/wlan-ng/cfg80211.c index bdb1e6677cc7..0e44a0f73a6a 100644 --- a/drivers/staging/wlan-ng/cfg80211.c +++ b/drivers/staging/wlan-ng/cfg80211.c @@ -365,7 +365,8 @@ static int prism2_scan(struct wiphy *wiphy, msg2.beaconperiod.data, ie_buf, ie_len, - (msg2.signal.data - 65536) * 100, /* Conversion to signed type */ + /* Conversion to signed type */ + (msg2.signal.data - 65536) * 100, GFP_KERNEL); if (!bss) { -- 2.25.1
Powered by blists - more mailing lists