aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/ath6kl/include/common/wmi.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/ath6kl/include/common/wmi.h')
-rw-r--r--drivers/staging/ath6kl/include/common/wmi.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/drivers/staging/ath6kl/include/common/wmi.h b/drivers/staging/ath6kl/include/common/wmi.h
index 2fb03bea403..12ca0254e8e 100644
--- a/drivers/staging/ath6kl/include/common/wmi.h
+++ b/drivers/staging/ath6kl/include/common/wmi.h
@@ -996,18 +996,18 @@ typedef PREPACK struct {
996 996
997typedef PREPACK struct WMI_RSSI_THRESHOLD_PARAMS{ 997typedef PREPACK struct WMI_RSSI_THRESHOLD_PARAMS{
998 u32 pollTime; /* Polling time as a factor of LI */ 998 u32 pollTime; /* Polling time as a factor of LI */
999 A_INT16 thresholdAbove1_Val; /* lowest of upper */ 999 s16 thresholdAbove1_Val; /* lowest of upper */
1000 A_INT16 thresholdAbove2_Val; 1000 s16 thresholdAbove2_Val;
1001 A_INT16 thresholdAbove3_Val; 1001 s16 thresholdAbove3_Val;
1002 A_INT16 thresholdAbove4_Val; 1002 s16 thresholdAbove4_Val;
1003 A_INT16 thresholdAbove5_Val; 1003 s16 thresholdAbove5_Val;
1004 A_INT16 thresholdAbove6_Val; /* highest of upper */ 1004 s16 thresholdAbove6_Val; /* highest of upper */
1005 A_INT16 thresholdBelow1_Val; /* lowest of bellow */ 1005 s16 thresholdBelow1_Val; /* lowest of bellow */
1006 A_INT16 thresholdBelow2_Val; 1006 s16 thresholdBelow2_Val;
1007 A_INT16 thresholdBelow3_Val; 1007 s16 thresholdBelow3_Val;
1008 A_INT16 thresholdBelow4_Val; 1008 s16 thresholdBelow4_Val;
1009 A_INT16 thresholdBelow5_Val; 1009 s16 thresholdBelow5_Val;
1010 A_INT16 thresholdBelow6_Val; /* highest of bellow */ 1010 s16 thresholdBelow6_Val; /* highest of bellow */
1011 u8 weight; /* "alpha" */ 1011 u8 weight; /* "alpha" */
1012 u8 reserved[3]; 1012 u8 reserved[3];
1013} POSTPACK WMI_RSSI_THRESHOLD_PARAMS_CMD; 1013} POSTPACK WMI_RSSI_THRESHOLD_PARAMS_CMD;
@@ -1209,8 +1209,8 @@ typedef PREPACK struct {
1209 1209
1210typedef PREPACK struct WMI_LOWRSSI_SCAN_PARAMS { 1210typedef PREPACK struct WMI_LOWRSSI_SCAN_PARAMS {
1211 u16 lowrssi_scan_period; 1211 u16 lowrssi_scan_period;
1212 A_INT16 lowrssi_scan_threshold; 1212 s16 lowrssi_scan_threshold;
1213 A_INT16 lowrssi_roam_threshold; 1213 s16 lowrssi_roam_threshold;
1214 u8 roam_rssi_floor; 1214 u8 roam_rssi_floor;
1215 u8 reserved[1]; /* For alignment */ 1215 u8 reserved[1]; /* For alignment */
1216} POSTPACK WMI_LOWRSSI_SCAN_PARAMS; 1216} POSTPACK WMI_LOWRSSI_SCAN_PARAMS;
@@ -2062,7 +2062,7 @@ typedef PREPACK struct {
2062 u16 channel; 2062 u16 channel;
2063 u8 frameType; /* see WMI_BI_FTYPE */ 2063 u8 frameType; /* see WMI_BI_FTYPE */
2064 u8 snr; 2064 u8 snr;
2065 A_INT16 rssi; 2065 s16 rssi;
2066 u8 bssid[ATH_MAC_LEN]; 2066 u8 bssid[ATH_MAC_LEN];
2067 u32 ieMask; 2067 u32 ieMask;
2068} POSTPACK WMI_BSS_INFO_HDR; 2068} POSTPACK WMI_BSS_INFO_HDR;
@@ -2277,9 +2277,9 @@ typedef PREPACK struct {
2277 u32 cs_lowRssi_cnt; 2277 u32 cs_lowRssi_cnt;
2278 u16 cs_connect_cnt; 2278 u16 cs_connect_cnt;
2279 u16 cs_disconnect_cnt; 2279 u16 cs_disconnect_cnt;
2280 A_INT16 cs_aveBeacon_rssi; 2280 s16 cs_aveBeacon_rssi;
2281 u16 cs_roam_count; 2281 u16 cs_roam_count;
2282 A_INT16 cs_rssi; 2282 s16 cs_rssi;
2283 u8 cs_snr; 2283 u8 cs_snr;
2284 u8 cs_aveBeacon_snr; 2284 u8 cs_aveBeacon_snr;
2285 u8 cs_lastRoam_msec; 2285 u8 cs_lastRoam_msec;
@@ -2335,7 +2335,7 @@ typedef enum{
2335}WMI_RSSI_THRESHOLD_VAL; 2335}WMI_RSSI_THRESHOLD_VAL;
2336 2336
2337typedef PREPACK struct { 2337typedef PREPACK struct {
2338 A_INT16 rssi; 2338 s16 rssi;
2339 u8 range; 2339 u8 range;
2340}POSTPACK WMI_RSSI_THRESHOLD_EVENT; 2340}POSTPACK WMI_RSSI_THRESHOLD_EVENT;
2341 2341