[PATCH] hw_features: Remove redundant conditions

Masashi Honma masashi.honma at gmail.com
Thu Feb 2 23:57:57 PST 2017


vht_oper_chwidth is always one in this context.

Signed-off-by: Masashi Honma <masashi.honma at gmail.com>
---
 src/common/hw_features_common.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/common/hw_features_common.c b/src/common/hw_features_common.c
index ef4b59d..74f2cff 100644
--- a/src/common/hw_features_common.c
+++ b/src/common/hw_features_common.c
@@ -388,9 +388,7 @@ int hostapd_set_freq_params(struct hostapd_freq_params *data,
 		/* fall through */
 	case VHT_CHANWIDTH_80MHZ:
 		data->bandwidth = 80;
-		if ((vht_oper_chwidth == 1 && center_segment1) ||
-		    (vht_oper_chwidth == 3 && !center_segment1) ||
-		    !sec_channel_offset)
+		if (center_segment1 || !sec_channel_offset)
 			return -1;
 		if (!center_segment0) {
 			if (channel <= 48)
-- 
2.7.4




More information about the Hostap mailing list