diff mbox series

net: wireless: reg.c: Remove spaces at the start of line

Message ID 20210503163636.hoy3odhmpmqh7fl7@kewl-virtual-machine
State New
Headers show
Series net: wireless: reg.c: Remove spaces at the start of line | expand

Commit Message

Shubhankar Kuranagatti May 3, 2021, 4:36 p.m. UTC
Spaces have been removed at the start of the line
Tabs have been used in place of spaces
New line added after declaration
The closing */ has been shifted to new line
This is done to maintain code uniformity

Signed-off-by: Shubhankar Kuranagatti <shubhankarvk@gmail.com>
---
 net/wireless/reg.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/net/wireless/reg.c b/net/wireless/reg.c
index 21536c48deec..52ec7d87bfe5 100644
--- a/net/wireless/reg.c
+++ b/net/wireless/reg.c
@@ -241,14 +241,15 @@  static const struct ieee80211_regdomain world_regdom = {
 		REG_RULE(2467-10, 2472+10, 20, 6, 20,
 			NL80211_RRF_NO_IR | NL80211_RRF_AUTO_BW),
 		/* IEEE 802.11 channel 14 - Only JP enables
-		 * this and for 802.11b only */
+		 * this and for 802.11b only
+		 */
 		REG_RULE(2484-10, 2484+10, 20, 6, 20,
 			NL80211_RRF_NO_IR |
 			NL80211_RRF_NO_OFDM),
 		/* IEEE 802.11a, channel 36..48 */
 		REG_RULE(5180-10, 5240+10, 80, 6, 20,
-                        NL80211_RRF_NO_IR |
-                        NL80211_RRF_AUTO_BW),
+			NL80211_RRF_NO_IR |
+			NL80211_RRF_AUTO_BW),
 
 		/* IEEE 802.11a, channel 52..64 - DFS required */
 		REG_RULE(5260-10, 5320+10, 80, 6, 20,
@@ -1563,6 +1564,7 @@  regdom_intersect(const struct ieee80211_regdomain *rd1,
 static u32 map_regdom_flags(u32 rd_flags)
 {
 	u32 channel_flags = 0;
+
 	if (rd_flags & NL80211_RRF_NO_IR_ALL)
 		channel_flags |= IEEE80211_CHAN_NO_IR;
 	if (rd_flags & NL80211_RRF_DFS)