]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
staging: wlan-ng: Fix alignment to match open parenthesis
authorSumera Priyadarsini <sylphrenadin@gmail.com>
Mon, 20 Jul 2020 12:28:17 +0000 (17:58 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 21 Jul 2020 14:52:47 +0000 (16:52 +0200)
This patch fixes the file cfg80211.c to avoid
the checkpatch.pl warning:
CHECK: Alignment should match open parenthesis

Signed-off-by: Sumera Priyadarsini <sylphrenadin@gmail.com>
Link: https://lore.kernel.org/r/20200720122817.31164-1-sylphrenadin@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wlan-ng/cfg80211.c

index fac38c842ac50bce8f53441369f61fd8cd20a0bd..759e475e303c06c440cb85fb6e640441eb20f19f 100644 (file)
@@ -359,16 +359,15 @@ static int prism2_scan(struct wiphy *wiphy,
                freq = ieee80211_channel_to_frequency(msg2.dschannel.data,
                                                      NL80211_BAND_2GHZ);
                bss = cfg80211_inform_bss(wiphy,
-                       ieee80211_get_channel(wiphy, freq),
-                       CFG80211_BSS_FTYPE_UNKNOWN,
-                       (const u8 *)&msg2.bssid.data.data,
-                       msg2.timestamp.data, msg2.capinfo.data,
-                       msg2.beaconperiod.data,
-                       ie_buf,
-                       ie_len,
-                       (msg2.signal.data - 65536) * 100, /* Conversion to signed type */
-                       GFP_KERNEL
-               );
+                                         ieee80211_get_channel(wiphy, freq),
+                                         CFG80211_BSS_FTYPE_UNKNOWN,
+                                         (const u8 *)&msg2.bssid.data.data,
+                                         msg2.timestamp.data, msg2.capinfo.data,
+                                         msg2.beaconperiod.data,
+                                         ie_buf,
+                                         ie_len,
+                                         (msg2.signal.data - 65536) * 100, /* Conversion to signed type */
+                                         GFP_KERNEL);
 
                if (!bss) {
                        err = -ENOMEM;