OSDN Git Service

Remove const integers from HAL and define undefined structs
authorMitchell Wills <mwills@google.com>
Thu, 26 May 2016 20:10:56 +0000 (13:10 -0700)
committerMitchell Wills <mwills@google.com>
Thu, 26 May 2016 20:13:37 +0000 (13:13 -0700)
Bug: 28984011
Change-Id: I6edfe547fbad127db9cbff654b96a476140d9f05

include/hardware_legacy/gscan.h
include/hardware_legacy/wifi_hal.h

index d72fccb..a5ceaba 100644 (file)
@@ -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);
index 264d8f8..5fa003f 100644 (file)
@@ -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;