wifi_hal: Increase max tx levels to 256

BUG: 27969673
Change-Id: I65232f20192a87998d921769501915578d9a54a6
This commit is contained in:
Roshan Pius 2016-04-04 09:05:09 -07:00
parent 5af9a3e5c8
commit a3baf0e332
2 changed files with 1 additions and 7 deletions

View file

@ -83,7 +83,7 @@ typedef struct {
} wifi_channel_stat;
// Max number of tx power levels. The actual number vary per device and is specified by |num_tx_levels|
#define RADIO_STAT_MAX_TX_LEVELS 64
#define RADIO_STAT_MAX_TX_LEVELS 256
/* radio statistics */
typedef struct {

View file

@ -117,12 +117,6 @@ void wifi_get_error_info(wifi_error err, const char **msg); // return a pointer
typedef int feature_set;
#define IS_MASK_SET(mask, flags) ((flags & mask) == mask)
#define IS_MASK_RESET(mask, flags) ((flags & mask) == 0)
#define IS_SUPPORTED_FEATURE(feature, featureSet) IS_MASK_SET(feature, fetureSet)
#define IS_UNSUPPORTED_FEATURE(feature, featureSet) IS_MASK_RESET(feature, fetureSet)
/* Feature set */
wifi_error wifi_get_supported_feature_set(wifi_interface_handle handle, feature_set *set);