Skip to content

Commit

Permalink
Remove const integers from HAL and define undefined structs
Browse files Browse the repository at this point in the history
Bug: 28984011
Change-Id: I6edfe547fbad127db9cbff654b96a476140d9f05
  • Loading branch information
mitchellwills committed May 26, 2016
1 parent 0a5a892 commit 564211e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
16 changes: 8 additions & 8 deletions include/hardware_legacy/gscan.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ typedef enum {
WIFI_BAND_ABG_WITH_DFS = 7, // 2.4 GHz + 5 GHz with DFS
} wifi_band;

const unsigned MAX_CHANNELS = 16;
const unsigned MAX_BUCKETS = 16;
const unsigned MAX_HOTLIST_APS = 128;
const unsigned MAX_SIGNIFICANT_CHANGE_APS = 64;
const unsigned MAX_EPNO_NETWORKS = 64;
const unsigned MAX_HOTLIST_SSID = 8;
const unsigned MAX_BLACKLIST_BSSID = 16;
const unsigned MAX_AP_CACHE_PER_SCAN = 32;
#define MAX_CHANNELS 16
#define MAX_BUCKETS 16
#define MAX_HOTLIST_APS 128
#define MAX_SIGNIFICANT_CHANGE_APS 64
#define MAX_EPNO_NETWORKS 64
#define MAX_HOTLIST_SSID 8
#define MAX_BLACKLIST_BSSID 16
#define MAX_AP_CACHE_PER_SCAN 32

wifi_error wifi_get_valid_channels(wifi_interface_handle handle,
int band, int max_channels, wifi_channel *channels, int *num_channels);
Expand Down
2 changes: 2 additions & 0 deletions include/hardware_legacy/wifi_hal.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ typedef byte oui[3];
typedef int64_t wifi_timestamp; // In microseconds (us)
typedef int64_t wifi_timespan; // In picoseconds (ps)

struct wifi_info;
struct wifi_interface_info;
typedef struct wifi_info *wifi_handle;
typedef struct wifi_interface_info *wifi_interface_handle;

Expand Down

0 comments on commit 564211e

Please sign in to comment.