From c7cb42d531ccc01dac97543cefd4f1061331c557 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Tue, 9 Jun 2020 00:21:06 +0300 Subject: [PATCH] Remove unused enum values The last user of these was removed in commit 17fbb751e174 ("Remove user space client MLME") and there is no need to maintain these unused values anymore. Signed-off-by: Jouni Malinen --- hostapd/config_file.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/hostapd/config_file.c b/hostapd/config_file.c index 0a181f2e1..8f7fcd8b7 100644 --- a/hostapd/config_file.c +++ b/hostapd/config_file.c @@ -943,14 +943,6 @@ static int hostapd_config_bss(struct hostapd_config *conf, const char *ifname) } -enum { - IEEE80211_TX_QUEUE_DATA0 = 0, /* used for EDCA AC_VO data */ - IEEE80211_TX_QUEUE_DATA1 = 1, /* used for EDCA AC_VI data */ - IEEE80211_TX_QUEUE_DATA2 = 2, /* used for EDCA AC_BE data */ - IEEE80211_TX_QUEUE_DATA3 = 3 /* used for EDCA AC_BK data */ -}; - - #ifdef CONFIG_IEEE80211R_AP static int rkh_derive_key(const char *pos, u8 *key, size_t key_len)