Remove unused rate flags from driver use

These are not really used and can be removed to clean up the driver
interface definition. The only remaining flag (HOSTAPD_RATE_BASIC) can
be removed once the basic rate set indication can be handled
differently.
This commit is contained in:
Jouni Malinen 2009-12-09 21:38:14 +02:00
parent 22a7c9d735
commit 217e7eeaf0
4 changed files with 5 additions and 23 deletions

View file

@ -31,17 +31,11 @@ struct hostapd_channel_data {
u8 max_tx_power; /* maximum transmit power in dBm */
};
#define HOSTAPD_RATE_ERP 0x00000001
#define HOSTAPD_RATE_BASIC 0x00000002
#define HOSTAPD_RATE_PREAMBLE2 0x00000004
#define HOSTAPD_RATE_SUPPORTED 0x00000010
#define HOSTAPD_RATE_OFDM 0x00000020
#define HOSTAPD_RATE_CCK 0x00000040
#define HOSTAPD_RATE_MANDATORY 0x00000100
struct hostapd_rate_data {
int rate; /* rate in 100 kbps */
int flags; /* HOSTAPD_RATE_ flags */
int flags; /* HOSTAPD_RATE_ flags for internal use */
};
struct hostapd_hw_modes {