[PATCH] hw_features: provide proper fallback to HT20 by defering channel pair check

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Defer decision, so we could possibly benefit from a fallback.
For instance, that may happen with FCC UNII ch165,
which is 20 MHz wide.

Signed-off-by: Eduardo Abinader <eduardoabinader@xxxxxxxxx>
---
 src/ap/hw_features.c | 15 +--------------
 1 file changed, 1 insertion(+), 14 deletions(-)

diff --git a/src/ap/hw_features.c b/src/ap/hw_features.c
index 93d923a..318389c 100644
--- a/src/ap/hw_features.c
+++ b/src/ap/hw_features.c
@@ -720,24 +720,11 @@ static int hostapd_is_usable_chan(struct hostapd_iface *iface,
 }
 
 
-static int hostapd_is_usable_chans(struct hostapd_iface *iface)
-{
-	if (!hostapd_is_usable_chan(iface, iface->conf->channel, 1))
-		return 0;
-
-	if (!iface->conf->secondary_channel)
-		return 1;
-
-	return hostapd_is_usable_chan(iface, iface->conf->channel +
-				      iface->conf->secondary_channel * 4, 0);
-}
-
-
 static enum hostapd_chan_status
 hostapd_check_chans(struct hostapd_iface *iface)
 {
 	if (iface->conf->channel) {
-		if (hostapd_is_usable_chans(iface))
+		if (hostapd_is_usable_chan(iface, iface->conf->channel, 1))
 			return HOSTAPD_CHAN_VALID;
 		else
 			return HOSTAPD_CHAN_INVALID;
-- 
2.5.0


_______________________________________________
Hostap mailing list
Hostap@xxxxxxxxxxxxxxxxxxx
http://lists.infradead.org/mailman/listinfo/hostap



[Index of Archives]     [Linux Wireless]     [Linux Kernel]     [ATH6KL]     [Linux Bluetooth]     [Linux Netdev]     [Kernel Newbies]     [IDE]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux ATA RAID]     [Samba]     [Device Mapper]

  Powered by Linux