Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Apr 2023 22:26:34 GMT
From:      "Bjoern A. Zeeb" <bz@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: cfccc7f30a01 - main - LinuxKPI: 802.11: remove extra spaces
Message-ID:  <202304022226.332MQYKZ056549@gitrepo.freebsd.org>

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

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

commit cfccc7f30a01bb6f00672e4be4abfe4107d645bb
Author:     Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2023-04-02 22:25:28 +0000
Commit:     Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2023-04-02 22:25:28 +0000

    LinuxKPI: 802.11: remove extra spaces
    
    Remove two extra spaces.  No functional change.
    
    Sponsored by:   The FreeBSD Foundation
    MFC after:      3 days
---
 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 453230d54452..53ddd16413bb 100644
--- a/sys/compat/linuxkpi/common/src/linux_80211.c
+++ b/sys/compat/linuxkpi/common/src/linux_80211.c
@@ -2380,9 +2380,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?202304022226.332MQYKZ056549>