Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 5 Nov 2020 12:14:51 +0000 (UTC)
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r367376 - stable/12/sys/net80211
Message-ID:  <202011051214.0A5CEpTT031171@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bz
Date: Thu Nov  5 12:14:51 2020
New Revision: 367376
URL: https://svnweb.freebsd.org/changeset/base/367376

Log:
  MFC r366525:
  
    net80211: whitespace
  
    Fix indentation for the multi-line copies of
    ieee80211_add_channel_list_5ghz() for the 3 bands.

Modified:
  stable/12/sys/net80211/ieee80211_regdomain.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/net80211/ieee80211_regdomain.c
==============================================================================
--- stable/12/sys/net80211/ieee80211_regdomain.c	Thu Nov  5 12:12:26 2020	(r367375)
+++ stable/12/sys/net80211/ieee80211_regdomain.c	Thu Nov  5 12:14:51 2020	(r367376)
@@ -158,14 +158,14 @@ ieee80211_init_channels(struct ieee80211com *ic,
 		    IEEE80211_VHTCAP_SUPP_CHAN_WIDTH_MASK) == 2)
 			cbw_flags |= NET80211_CBW_FLAG_VHT80P80;
 		ieee80211_add_channel_list_5ghz(chans, IEEE80211_CHAN_MAX,
-		   nchans, def_chan_5ghz_band1, nitems(def_chan_5ghz_band1),
-		   bands, cbw_flags);
+		    nchans, def_chan_5ghz_band1, nitems(def_chan_5ghz_band1),
+		    bands, cbw_flags);
 		ieee80211_add_channel_list_5ghz(chans, IEEE80211_CHAN_MAX,
 		    nchans, def_chan_5ghz_band2, nitems(def_chan_5ghz_band2),
-		   bands, cbw_flags);
+		    bands, cbw_flags);
 		ieee80211_add_channel_list_5ghz(chans, IEEE80211_CHAN_MAX,
 		    nchans, def_chan_5ghz_band3, nitems(def_chan_5ghz_band3),
-		   bands, cbw_flags);
+		    bands, cbw_flags);
 	}
 	if (rd != NULL)
 		ic->ic_regdomain = *rd;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011051214.0A5CEpTT031171>