Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 26 Jun 2023 12:08:37 GMT
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: c513977ca883 - stable/13 - LinuxKPI: 802.11: remove extra spaces
Message-ID:  <202306261208.35QC8bDv083105@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by bz:

URL: https://cgit.FreeBSD.org/src/commit/?id=c513977ca883d9600bae6012cbcbe1b276761b16

commit c513977ca883d9600bae6012cbcbe1b276761b16
Author:     Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2023-04-02 22:25:28 +0000
Commit:     Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2023-06-26 09:13:19 +0000

    LinuxKPI: 802.11: remove extra spaces
    
    Remove two extra spaces.  No functional change.
    
    Sponsored by:   The FreeBSD Foundation
    
    (cherry picked from commit cfccc7f30a01bb6f00672e4be4abfe4107d645bb)
---
 sys/compat/linuxkpi/common/src/linux_80211.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/compat/linuxkpi/common/src/linux_80211.c b/sys/compat/linuxkpi/common/src/linux_80211.c
index 7d0fc75e751d..91b17769bdb5 100644
--- a/sys/compat/linuxkpi/common/src/linux_80211.c
+++ b/sys/compat/linuxkpi/common/src/linux_80211.c
@@ -2349,9 +2349,9 @@ lkpi_ic_vap_create(struct ieee80211com *ic, const char name[IFNAMSIZ],
 	ic->ic_set_channel(ic);
 
 	/* XXX-BZ do we need to be able to update these? */
-	hw->wiphy->frag_threshold =  vap->iv_fragthreshold;
+	hw->wiphy->frag_threshold = vap->iv_fragthreshold;
 	lkpi_80211_mo_set_frag_threshold(hw, vap->iv_fragthreshold);
-	hw->wiphy->rts_threshold =  vap->iv_rtsthreshold;
+	hw->wiphy->rts_threshold = vap->iv_rtsthreshold;
 	lkpi_80211_mo_set_rts_threshold(hw, vap->iv_rtsthreshold);
 	/* any others? */
 	IMPROVE();



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