[PATCH 4/6] wlan-ng: clean up line length

Johannes Czekay johannes.czekay at fau.de
Mon Jan 18 01:09:54 UTC 2021


This patch cleans up all remaining line length related warnings.

Signed-off-by: Johannes Czekay <johannes.czekay at fau.de>
Co-developed-by: Nicolai Fischer <nicolai.fischer at fau.de>
Signed-off-by: Nicolai Fischer <nicolai.fischer at fau.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



More information about the devel mailing list