Commit cb1e3709 authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

staging: ath6kl: Convert A_INT16 to s16

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent f2ab1275
...@@ -996,18 +996,18 @@ typedef PREPACK struct { ...@@ -996,18 +996,18 @@ typedef PREPACK struct {
typedef PREPACK struct WMI_RSSI_THRESHOLD_PARAMS{ typedef PREPACK struct WMI_RSSI_THRESHOLD_PARAMS{
u32 pollTime; /* Polling time as a factor of LI */ u32 pollTime; /* Polling time as a factor of LI */
A_INT16 thresholdAbove1_Val; /* lowest of upper */ s16 thresholdAbove1_Val; /* lowest of upper */
A_INT16 thresholdAbove2_Val; s16 thresholdAbove2_Val;
A_INT16 thresholdAbove3_Val; s16 thresholdAbove3_Val;
A_INT16 thresholdAbove4_Val; s16 thresholdAbove4_Val;
A_INT16 thresholdAbove5_Val; s16 thresholdAbove5_Val;
A_INT16 thresholdAbove6_Val; /* highest of upper */ s16 thresholdAbove6_Val; /* highest of upper */
A_INT16 thresholdBelow1_Val; /* lowest of bellow */ s16 thresholdBelow1_Val; /* lowest of bellow */
A_INT16 thresholdBelow2_Val; s16 thresholdBelow2_Val;
A_INT16 thresholdBelow3_Val; s16 thresholdBelow3_Val;
A_INT16 thresholdBelow4_Val; s16 thresholdBelow4_Val;
A_INT16 thresholdBelow5_Val; s16 thresholdBelow5_Val;
A_INT16 thresholdBelow6_Val; /* highest of bellow */ s16 thresholdBelow6_Val; /* highest of bellow */
u8 weight; /* "alpha" */ u8 weight; /* "alpha" */
u8 reserved[3]; u8 reserved[3];
} POSTPACK WMI_RSSI_THRESHOLD_PARAMS_CMD; } POSTPACK WMI_RSSI_THRESHOLD_PARAMS_CMD;
...@@ -1209,8 +1209,8 @@ typedef PREPACK struct { ...@@ -1209,8 +1209,8 @@ typedef PREPACK struct {
typedef PREPACK struct WMI_LOWRSSI_SCAN_PARAMS { typedef PREPACK struct WMI_LOWRSSI_SCAN_PARAMS {
u16 lowrssi_scan_period; u16 lowrssi_scan_period;
A_INT16 lowrssi_scan_threshold; s16 lowrssi_scan_threshold;
A_INT16 lowrssi_roam_threshold; s16 lowrssi_roam_threshold;
u8 roam_rssi_floor; u8 roam_rssi_floor;
u8 reserved[1]; /* For alignment */ u8 reserved[1]; /* For alignment */
} POSTPACK WMI_LOWRSSI_SCAN_PARAMS; } POSTPACK WMI_LOWRSSI_SCAN_PARAMS;
...@@ -2062,7 +2062,7 @@ typedef PREPACK struct { ...@@ -2062,7 +2062,7 @@ typedef PREPACK struct {
u16 channel; u16 channel;
u8 frameType; /* see WMI_BI_FTYPE */ u8 frameType; /* see WMI_BI_FTYPE */
u8 snr; u8 snr;
A_INT16 rssi; s16 rssi;
u8 bssid[ATH_MAC_LEN]; u8 bssid[ATH_MAC_LEN];
u32 ieMask; u32 ieMask;
} POSTPACK WMI_BSS_INFO_HDR; } POSTPACK WMI_BSS_INFO_HDR;
...@@ -2277,9 +2277,9 @@ typedef PREPACK struct { ...@@ -2277,9 +2277,9 @@ typedef PREPACK struct {
u32 cs_lowRssi_cnt; u32 cs_lowRssi_cnt;
u16 cs_connect_cnt; u16 cs_connect_cnt;
u16 cs_disconnect_cnt; u16 cs_disconnect_cnt;
A_INT16 cs_aveBeacon_rssi; s16 cs_aveBeacon_rssi;
u16 cs_roam_count; u16 cs_roam_count;
A_INT16 cs_rssi; s16 cs_rssi;
u8 cs_snr; u8 cs_snr;
u8 cs_aveBeacon_snr; u8 cs_aveBeacon_snr;
u8 cs_lastRoam_msec; u8 cs_lastRoam_msec;
...@@ -2335,7 +2335,7 @@ typedef enum{ ...@@ -2335,7 +2335,7 @@ typedef enum{
}WMI_RSSI_THRESHOLD_VAL; }WMI_RSSI_THRESHOLD_VAL;
typedef PREPACK struct { typedef PREPACK struct {
A_INT16 rssi; s16 rssi;
u8 range; u8 range;
}POSTPACK WMI_RSSI_THRESHOLD_EVENT; }POSTPACK WMI_RSSI_THRESHOLD_EVENT;
......
...@@ -61,7 +61,7 @@ struct ieee80211_common_ie { ...@@ -61,7 +61,7 @@ struct ieee80211_common_ie {
typedef struct bss { typedef struct bss {
u8 ni_macaddr[6]; u8 ni_macaddr[6];
u8 ni_snr; u8 ni_snr;
A_INT16 ni_rssi; s16 ni_rssi;
struct bss *ni_list_next; struct bss *ni_list_next;
struct bss *ni_list_prev; struct bss *ni_list_prev;
struct bss *ni_hash_next; struct bss *ni_hash_next;
......
...@@ -260,16 +260,16 @@ typedef struct user_rssi_compensation_t { ...@@ -260,16 +260,16 @@ typedef struct user_rssi_compensation_t {
u16 bg_enable; u16 bg_enable;
u16 enable; u16 enable;
}; };
A_INT16 bg_param_a; s16 bg_param_a;
A_INT16 bg_param_b; s16 bg_param_b;
A_INT16 a_param_a; s16 a_param_a;
A_INT16 a_param_b; s16 a_param_b;
u32 reserved; u32 reserved;
} USER_RSSI_CPENSATION; } USER_RSSI_CPENSATION;
static USER_RSSI_CPENSATION rssi_compensation_param; static USER_RSSI_CPENSATION rssi_compensation_param;
static A_INT16 rssi_compensation_table[96]; static s16 rssi_compensation_table[96];
int reconnect_flag = 0; int reconnect_flag = 0;
static ar6k_pal_config_t ar6k_pal_config_g; static ar6k_pal_config_t ar6k_pal_config_g;
...@@ -2430,7 +2430,7 @@ int ar6000_init(struct net_device *dev) ...@@ -2430,7 +2430,7 @@ int ar6000_init(struct net_device *dev)
AR_SOFTC_T *ar; AR_SOFTC_T *ar;
int status; int status;
A_INT32 timeleft; A_INT32 timeleft;
A_INT16 i; s16 i;
int ret = 0; int ret = 0;
#if defined(INIT_MODE_DRV_ENABLED) && defined(ENABLE_COEXISTENCE) #if defined(INIT_MODE_DRV_ENABLED) && defined(ENABLE_COEXISTENCE)
WMI_SET_BTCOEX_COLOCATED_BT_DEV_CMD sbcb_cmd; WMI_SET_BTCOEX_COLOCATED_BT_DEV_CMD sbcb_cmd;
...@@ -5030,7 +5030,7 @@ ar6000_targetStats_event(AR_SOFTC_T *ar, u8 *ptr, u32 len) ...@@ -5030,7 +5030,7 @@ ar6000_targetStats_event(AR_SOFTC_T *ar, u8 *ptr, u32 len)
} }
void void
ar6000_rssiThreshold_event(AR_SOFTC_T *ar, WMI_RSSI_THRESHOLD_VAL newThreshold, A_INT16 rssi) ar6000_rssiThreshold_event(AR_SOFTC_T *ar, WMI_RSSI_THRESHOLD_VAL newThreshold, s16 rssi)
{ {
USER_RSSI_THOLD userRssiThold; USER_RSSI_THOLD userRssiThold;
...@@ -5791,7 +5791,7 @@ read_rssi_compensation_param(AR_SOFTC_T *ar) ...@@ -5791,7 +5791,7 @@ read_rssi_compensation_param(AR_SOFTC_T *ar)
//#define RSSICOMPENSATION_PRINT //#define RSSICOMPENSATION_PRINT
#ifdef RSSICOMPENSATION_PRINT #ifdef RSSICOMPENSATION_PRINT
A_INT16 i; s16 i;
cust_data_ptr = ar6000_get_cust_data_buffer(ar->arTargetType); cust_data_ptr = ar6000_get_cust_data_buffer(ar->arTargetType);
for (i=0; i<16; i++) { for (i=0; i<16; i++) {
A_PRINTF("cust_data_%d = %x \n", i, *(u8 *)cust_data_ptr); A_PRINTF("cust_data_%d = %x \n", i, *(u8 *)cust_data_ptr);
...@@ -5856,8 +5856,7 @@ rssi_compensation_calc_tcmd(u32 freq, A_INT32 rssi, u32 totalPkt) ...@@ -5856,8 +5856,7 @@ rssi_compensation_calc_tcmd(u32 freq, A_INT32 rssi, u32 totalPkt)
return rssi; return rssi;
} }
A_INT16 s16 rssi_compensation_calc(AR_SOFTC_T *ar, s16 rssi)
rssi_compensation_calc(AR_SOFTC_T *ar, A_INT16 rssi)
{ {
if (ar->arBssChannel > 5000) if (ar->arBssChannel > 5000)
{ {
...@@ -5885,10 +5884,9 @@ rssi_compensation_calc(AR_SOFTC_T *ar, A_INT16 rssi) ...@@ -5885,10 +5884,9 @@ rssi_compensation_calc(AR_SOFTC_T *ar, A_INT16 rssi)
return rssi; return rssi;
} }
A_INT16 s16 rssi_compensation_reverse_calc(AR_SOFTC_T *ar, s16 rssi, bool Above)
rssi_compensation_reverse_calc(AR_SOFTC_T *ar, A_INT16 rssi, bool Above)
{ {
A_INT16 i; s16 i;
if (ar->arBssChannel > 5000) if (ar->arBssChannel > 5000)
{ {
......
...@@ -215,7 +215,7 @@ int ar6000_suspend_ev(void *context) ...@@ -215,7 +215,7 @@ int ar6000_suspend_ev(void *context)
{ {
int status = A_OK; int status = A_OK;
AR_SOFTC_T *ar = (AR_SOFTC_T *)context; AR_SOFTC_T *ar = (AR_SOFTC_T *)context;
A_INT16 pmmode = ar->arSuspendConfig; s16 pmmode = ar->arSuspendConfig;
wow_not_connected: wow_not_connected:
switch (pmmode) { switch (pmmode) {
case WLAN_SUSPEND_WOW: case WLAN_SUSPEND_WOW:
......
...@@ -54,7 +54,7 @@ void ar6000_scanComplete_event(struct ar6_softc *ar, int status); ...@@ -54,7 +54,7 @@ void ar6000_scanComplete_event(struct ar6_softc *ar, int status);
void ar6000_targetStats_event(struct ar6_softc *ar, u8 *ptr, u32 len); void ar6000_targetStats_event(struct ar6_softc *ar, u8 *ptr, u32 len);
void ar6000_rssiThreshold_event(struct ar6_softc *ar, void ar6000_rssiThreshold_event(struct ar6_softc *ar,
WMI_RSSI_THRESHOLD_VAL newThreshold, WMI_RSSI_THRESHOLD_VAL newThreshold,
A_INT16 rssi); s16 rssi);
void ar6000_reportError_event(struct ar6_softc *, WMI_TARGET_ERROR_VAL errorVal); void ar6000_reportError_event(struct ar6_softc *, WMI_TARGET_ERROR_VAL errorVal);
void ar6000_cac_event(struct ar6_softc *ar, u8 ac, u8 cac_indication, void ar6000_cac_event(struct ar6_softc *ar, u8 ac, u8 cac_indication,
u8 statusCode, u8 *tspecSuggestion); u8 statusCode, u8 *tspecSuggestion);
...@@ -78,8 +78,8 @@ void ar6000_gpio_data_rx(u32 reg_id, u32 value); ...@@ -78,8 +78,8 @@ void ar6000_gpio_data_rx(u32 reg_id, u32 value);
void ar6000_gpio_ack_rx(void); void ar6000_gpio_ack_rx(void);
A_INT32 rssi_compensation_calc_tcmd(u32 freq, A_INT32 rssi, u32 totalPkt); A_INT32 rssi_compensation_calc_tcmd(u32 freq, A_INT32 rssi, u32 totalPkt);
A_INT16 rssi_compensation_calc(struct ar6_softc *ar, A_INT16 rssi); s16 rssi_compensation_calc(struct ar6_softc *ar, s16 rssi);
A_INT16 rssi_compensation_reverse_calc(struct ar6_softc *ar, A_INT16 rssi, bool Above); s16 rssi_compensation_reverse_calc(struct ar6_softc *ar, s16 rssi, bool Above);
void ar6000_dbglog_init_done(struct ar6_softc *ar); void ar6000_dbglog_init_done(struct ar6_softc *ar);
......
...@@ -1069,9 +1069,9 @@ typedef struct targetStats_t { ...@@ -1069,9 +1069,9 @@ typedef struct targetStats_t {
u32 wow_num_pkts_dropped; u32 wow_num_pkts_dropped;
u16 wow_num_events_discarded; u16 wow_num_events_discarded;
A_INT16 noise_floor_calibation; s16 noise_floor_calibation;
A_INT16 cs_rssi; s16 cs_rssi;
A_INT16 cs_aveBeacon_rssi; s16 cs_aveBeacon_rssi;
u8 cs_aveBeacon_snr; u8 cs_aveBeacon_snr;
u8 cs_lastRoam_msec; u8 cs_lastRoam_msec;
u8 cs_snr; u8 cs_snr;
...@@ -1139,8 +1139,8 @@ typedef struct ar6000_dbglog_module_config_s { ...@@ -1139,8 +1139,8 @@ typedef struct ar6000_dbglog_module_config_s {
} DBGLOG_MODULE_CONFIG; } DBGLOG_MODULE_CONFIG;
typedef struct user_rssi_thold_t { typedef struct user_rssi_thold_t {
A_INT16 tag; s16 tag;
A_INT16 rssi; s16 rssi;
} USER_RSSI_THOLD; } USER_RSSI_THOLD;
typedef struct user_rssi_params_t { typedef struct user_rssi_params_t {
......
...@@ -166,8 +166,8 @@ static int wmi_keepalive_reply_rx(struct wmi_t *wmip, u8 *datap, int len); ...@@ -166,8 +166,8 @@ static int wmi_keepalive_reply_rx(struct wmi_t *wmip, u8 *datap, int len);
int wmi_cmd_send_xtnd(struct wmi_t *wmip, void *osbuf, WMIX_COMMAND_ID cmdId, int wmi_cmd_send_xtnd(struct wmi_t *wmip, void *osbuf, WMIX_COMMAND_ID cmdId,
WMI_SYNC_FLAG syncflag); WMI_SYNC_FLAG syncflag);
u8 ar6000_get_upper_threshold(A_INT16 rssi, SQ_THRESHOLD_PARAMS *sq_thresh, u32 size); u8 ar6000_get_upper_threshold(s16 rssi, SQ_THRESHOLD_PARAMS *sq_thresh, u32 size);
u8 ar6000_get_lower_threshold(A_INT16 rssi, SQ_THRESHOLD_PARAMS *sq_thresh, u32 size); u8 ar6000_get_lower_threshold(s16 rssi, SQ_THRESHOLD_PARAMS *sq_thresh, u32 size);
void wmi_cache_configure_rssithreshold(struct wmi_t *wmip, WMI_RSSI_THRESHOLD_PARAMS_CMD *rssiCmd); void wmi_cache_configure_rssithreshold(struct wmi_t *wmip, WMI_RSSI_THRESHOLD_PARAMS_CMD *rssiCmd);
void wmi_cache_configure_snrthreshold(struct wmi_t *wmip, WMI_SNR_THRESHOLD_PARAMS_CMD *snrCmd); void wmi_cache_configure_snrthreshold(struct wmi_t *wmip, WMI_SNR_THRESHOLD_PARAMS_CMD *snrCmd);
...@@ -281,7 +281,7 @@ typedef PREPACK struct _iphdr { ...@@ -281,7 +281,7 @@ typedef PREPACK struct _iphdr {
u8 ip_tos; /* type of service */ u8 ip_tos; /* type of service */
u16 ip_len; /* total length */ u16 ip_len; /* total length */
u16 ip_id; /* identification */ u16 ip_id; /* identification */
A_INT16 ip_off; /* fragment offset field */ s16 ip_off; /* fragment offset field */
#define IP_DF 0x4000 /* dont fragment flag */ #define IP_DF 0x4000 /* dont fragment flag */
#define IP_MF 0x2000 /* more fragments flag */ #define IP_MF 0x2000 /* more fragments flag */
#define IP_OFFMASK 0x1fff /* mask for fragmenting bits */ #define IP_OFFMASK 0x1fff /* mask for fragmenting bits */
...@@ -294,8 +294,8 @@ typedef PREPACK struct _iphdr { ...@@ -294,8 +294,8 @@ typedef PREPACK struct _iphdr {
#include "athendpack.h" #include "athendpack.h"
static A_INT16 rssi_event_value = 0; static s16 rssi_event_value = 0;
static A_INT16 snr_event_value = 0; static s16 snr_event_value = 0;
bool is_probe_ssid = false; bool is_probe_ssid = false;
...@@ -1874,7 +1874,7 @@ wmi_rssiThresholdEvent_rx(struct wmi_t *wmip, u8 *datap, int len) ...@@ -1874,7 +1874,7 @@ wmi_rssiThresholdEvent_rx(struct wmi_t *wmip, u8 *datap, int len)
SQ_THRESHOLD_PARAMS *sq_thresh = SQ_THRESHOLD_PARAMS *sq_thresh =
&wmip->wmi_SqThresholdParams[SIGNAL_QUALITY_METRICS_RSSI]; &wmip->wmi_SqThresholdParams[SIGNAL_QUALITY_METRICS_RSSI];
u8 upper_rssi_threshold, lower_rssi_threshold; u8 upper_rssi_threshold, lower_rssi_threshold;
A_INT16 rssi; s16 rssi;
if (len < sizeof(*reply)) { if (len < sizeof(*reply)) {
return A_EINVAL; return A_EINVAL;
...@@ -2143,7 +2143,7 @@ wmi_snrThresholdEvent_rx(struct wmi_t *wmip, u8 *datap, int len) ...@@ -2143,7 +2143,7 @@ wmi_snrThresholdEvent_rx(struct wmi_t *wmip, u8 *datap, int len)
WMI_SNR_THRESHOLD_VAL newThreshold; WMI_SNR_THRESHOLD_VAL newThreshold;
WMI_SNR_THRESHOLD_PARAMS_CMD cmd; WMI_SNR_THRESHOLD_PARAMS_CMD cmd;
u8 upper_snr_threshold, lower_snr_threshold; u8 upper_snr_threshold, lower_snr_threshold;
A_INT16 snr; s16 snr;
if (len < sizeof(*reply)) { if (len < sizeof(*reply)) {
return A_EINVAL; return A_EINVAL;
...@@ -5882,7 +5882,7 @@ wmi_scan_indication (struct wmi_t *wmip) ...@@ -5882,7 +5882,7 @@ wmi_scan_indication (struct wmi_t *wmip)
} }
#endif #endif
u8 ar6000_get_upper_threshold(A_INT16 rssi, SQ_THRESHOLD_PARAMS *sq_thresh, u8 ar6000_get_upper_threshold(s16 rssi, SQ_THRESHOLD_PARAMS *sq_thresh,
u32 size) u32 size)
{ {
u32 index; u32 index;
...@@ -5899,7 +5899,7 @@ u8 ar6000_get_upper_threshold(A_INT16 rssi, SQ_THRESHOLD_PARAMS *sq_thresh, ...@@ -5899,7 +5899,7 @@ u8 ar6000_get_upper_threshold(A_INT16 rssi, SQ_THRESHOLD_PARAMS *sq_thresh,
return threshold; return threshold;
} }
u8 ar6000_get_lower_threshold(A_INT16 rssi, SQ_THRESHOLD_PARAMS *sq_thresh, u8 ar6000_get_lower_threshold(s16 rssi, SQ_THRESHOLD_PARAMS *sq_thresh,
u32 size) u32 size)
{ {
u32 index; u32 index;
......
...@@ -42,8 +42,8 @@ struct wmi_stats { ...@@ -42,8 +42,8 @@ struct wmi_stats {
#define SIGNAL_QUALITY_UPPER_THRESHOLD_LEVELS SIGNAL_QUALITY_THRESHOLD_LEVELS #define SIGNAL_QUALITY_UPPER_THRESHOLD_LEVELS SIGNAL_QUALITY_THRESHOLD_LEVELS
#define SIGNAL_QUALITY_LOWER_THRESHOLD_LEVELS SIGNAL_QUALITY_THRESHOLD_LEVELS #define SIGNAL_QUALITY_LOWER_THRESHOLD_LEVELS SIGNAL_QUALITY_THRESHOLD_LEVELS
typedef struct sq_threshold_params_s { typedef struct sq_threshold_params_s {
A_INT16 upper_threshold[SIGNAL_QUALITY_UPPER_THRESHOLD_LEVELS]; s16 upper_threshold[SIGNAL_QUALITY_UPPER_THRESHOLD_LEVELS];
A_INT16 lower_threshold[SIGNAL_QUALITY_LOWER_THRESHOLD_LEVELS]; s16 lower_threshold[SIGNAL_QUALITY_LOWER_THRESHOLD_LEVELS];
u32 upper_threshold_valid_count; u32 upper_threshold_valid_count;
u32 lower_threshold_valid_count; u32 lower_threshold_valid_count;
u32 polling_interval; u32 polling_interval;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment