Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 Sep 2025 15:19:50 GMT
From:      Olivier Certner <olce@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: c1eff1d745a1 - main - sys: NOTES: Fix comment for wlan_* devices; GENERIC*: Re-order 'wlan_tkip'
Message-ID:  <202509091519.589FJoSS065414@gitrepo.freebsd.org>

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

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

commit c1eff1d745a1193c199f735733e376161c69b12c
Author:     Olivier Certner <olce@FreeBSD.org>
AuthorDate: 2025-09-09 12:03:59 +0000
Commit:     Olivier Certner <olce@FreeBSD.org>
CommitDate: 2025-09-09 15:19:04 +0000

    sys: NOTES: Fix comment for wlan_* devices; GENERIC*: Re-order 'wlan_tkip'
    
    Fix the comment introducing the 'wlan_*' devices (AES-CCMP is missing)
    after introducing AES-GCMP.
    
    While here, re-order the devices in order of appearance of the related
    technologies.
    
    No functional change (intended).
    
    Reviewed by:    adrian, emaste
    Fixes:          7bf82ea4fdda ("sys: add wlan_gcmp to GENERIC kernels as appropriate")
    MFC after:      3 days
    MFC to:         stable/15
    Sponsored by:   The FreeBSD Foundation
    Differential Revision:  https://reviews.freebsd.org/D52444
---
 sys/amd64/conf/GENERIC       | 2 +-
 sys/arm/conf/TEGRA124        | 2 +-
 sys/conf/NOTES               | 8 ++++----
 sys/i386/conf/GENERIC        | 2 +-
 sys/powerpc/conf/GENERIC64   | 2 +-
 sys/powerpc/conf/GENERIC64LE | 2 +-
 6 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC
index 786edc4125c9..d5a1adb2dc65 100644
--- a/sys/amd64/conf/GENERIC
+++ b/sys/amd64/conf/GENERIC
@@ -287,9 +287,9 @@ device		wlan			# 802.11 support
 options 	IEEE80211_DEBUG		# enable debug msgs
 options 	IEEE80211_SUPPORT_MESH	# enable 802.11s draft support
 device		wlan_wep		# 802.11 WEP support
+device		wlan_tkip		# 802.11 TKIP support
 device		wlan_ccmp		# 802.11 CCMP support
 device		wlan_gcmp		# 802.11 GCMP support
-device		wlan_tkip		# 802.11 TKIP support
 device		wlan_amrr		# AMRR transmit rate control algorithm
 device		ath			# Atheros CardBus/PCI NICs
 device		ath_hal			# Atheros CardBus/PCI chip support
diff --git a/sys/arm/conf/TEGRA124 b/sys/arm/conf/TEGRA124
index ad5532427eda..ff23e63f77bd 100644
--- a/sys/arm/conf/TEGRA124
+++ b/sys/arm/conf/TEGRA124
@@ -107,9 +107,9 @@ device		ums			# USB mouse
 # Wireless NIC cards
 #device		wlan			# 802.11 support
 #device		wlan_wep		# 802.11 WEP support
+#device		wlan_tkip		# 802.11 TKIP support
 #device		wlan_ccmp		# 802.11 CCMP support
 #device		wlan_gcmp		# 802.11 GCMP support
-#device		wlan_tkip		# 802.11 TKIP support
 #device		wlan_amrr		# AMRR transmit rate control algorithm
 
 # PCI
diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index 92e98aa57ebf..0e4f54a35a13 100644
--- a/sys/conf/NOTES
+++ b/sys/conf/NOTES
@@ -888,13 +888,13 @@ options 	IEEE80211_DEBUG_REFCNT
 options 	IEEE80211_SUPPORT_MESH	#enable 802.11s D3.0 support
 options 	IEEE80211_SUPPORT_TDMA	#enable TDMA support
 
-#  The `wlan_wep', `wlan_tkip', and `wlan_ccmp' devices provide
-#  support for WEP, TKIP, AES-CCMP and AES-GCMP crypto protocols optionally
-#  used with 802.11 devices that depend on the `wlan' module.
+#  The `wlan_wep', `wlan_tkip', `wlan_ccmp', and `wlan_gcmp' devices provide
+#  support for WEP, TKIP, AES-CCMP and AES-GCMP crypto protocols optionally used
+#  with 802.11 devices that depend on the `wlan' module.
 device		wlan_wep
+device		wlan_tkip
 device		wlan_ccmp
 device		wlan_gcmp
-device		wlan_tkip
 
 #  The `wlan_xauth' device provides support for external (i.e. user-mode)
 #  authenticators for use with 802.11 drivers that use the `wlan'
diff --git a/sys/i386/conf/GENERIC b/sys/i386/conf/GENERIC
index 88b8967cd693..ac0cc4ba74e7 100644
--- a/sys/i386/conf/GENERIC
+++ b/sys/i386/conf/GENERIC
@@ -249,9 +249,9 @@ device		wlan			# 802.11 support
 options 	IEEE80211_DEBUG		# enable debug msgs
 options 	IEEE80211_SUPPORT_MESH	# enable 802.11s draft support
 device		wlan_wep		# 802.11 WEP support
+device		wlan_tkip		# 802.11 TKIP support
 device		wlan_ccmp		# 802.11 CCMP support
 device		wlan_gcmp		# 802.11 GCMP support
-device		wlan_tkip		# 802.11 TKIP support
 device		wlan_amrr		# AMRR transmit rate control algorithm
 device		ath			# Atheros CardBus/PCI NICs
 device		ath_hal			# Atheros CardBus/PCI chip support
diff --git a/sys/powerpc/conf/GENERIC64 b/sys/powerpc/conf/GENERIC64
index 630c88b97dd7..48f9df5b7e38 100644
--- a/sys/powerpc/conf/GENERIC64
+++ b/sys/powerpc/conf/GENERIC64
@@ -234,9 +234,9 @@ device		wlan		# 802.11 support
 options 	IEEE80211_SUPPORT_MESH	# enable 802.11s draft support
 options 	IEEE80211_DEBUG	# enable debug msgs
 device		wlan_wep	# 802.11 WEP support
+device		wlan_tkip	# 802.11 TKIP support
 device		wlan_ccmp	# 802.11 CCMP support
 device		wlan_gcmp	# 802.11 GCMP support
-device		wlan_tkip	# 802.11 TKIP support
 device		wlan_amrr	# AMRR transmit rate control algorithm
 device		ath		# Atheros CardBus/PCI NICs
 device		ath_hal		# Atheros CardBus/PCI chip support
diff --git a/sys/powerpc/conf/GENERIC64LE b/sys/powerpc/conf/GENERIC64LE
index eb9a9441425d..9af71f30626d 100644
--- a/sys/powerpc/conf/GENERIC64LE
+++ b/sys/powerpc/conf/GENERIC64LE
@@ -230,9 +230,9 @@ device		wlan		# 802.11 support
 options 	IEEE80211_SUPPORT_MESH	# enable 802.11s draft support
 options 	IEEE80211_DEBUG	# enable debug msgs
 device		wlan_wep	# 802.11 WEP support
+device		wlan_tkip	# 802.11 TKIP support
 device		wlan_ccmp	# 802.11 CCMP support
 device		wlan_gcmp	# 802.11 GCMP support
-device		wlan_tkip	# 802.11 TKIP support
 device		wlan_amrr	# AMRR transmit rate control algorithm
 device		ath		# Atheros CardBus/PCI NICs
 device		ath_hal		# Atheros CardBus/PCI chip support



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