Commit 52b1d208 authored by Ajay Singh's avatar Ajay Singh Committed by Greg Kroah-Hartman

staging: wilc1000: rename mac status macros and moved related #define together

Rename the mac status macro to follow the same naming style. Also move
them to keep together.

Renamed like below

>From ------------------------> To

WILC_MAC_STATUS_INIT -> MAC_STATUS_INIT
MAC_CONNECTED --------> MAC_STATUS_CONNECTED
MAC_DISCONNECTED -----> MAC_STATUS_DISCONNECTED
Signed-off-by: default avatarAjay Singh <ajay.kathat@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1ece3fb7
...@@ -1135,7 +1135,7 @@ static s32 handle_connect(struct wilc_vif *vif, ...@@ -1135,7 +1135,7 @@ static s32 handle_connect(struct wilc_vif *vif,
conn_attr->result(CONN_DISCONN_EVENT_CONN_RESP, conn_attr->result(CONN_DISCONN_EVENT_CONN_RESP,
&conn_info, &conn_info,
MAC_DISCONNECTED, MAC_STATUS_DISCONNECTED,
NULL, NULL,
conn_attr->arg); conn_attr->arg);
hif_drv->hif_state = HOST_IF_IDLE; hif_drv->hif_state = HOST_IF_IDLE;
...@@ -1193,7 +1193,7 @@ static s32 handle_connect_timeout(struct wilc_vif *vif) ...@@ -1193,7 +1193,7 @@ static s32 handle_connect_timeout(struct wilc_vif *vif)
hif_drv->usr_conn_req.conn_result(CONN_DISCONN_EVENT_CONN_RESP, hif_drv->usr_conn_req.conn_result(CONN_DISCONN_EVENT_CONN_RESP,
&info, &info,
MAC_DISCONNECTED, MAC_STATUS_DISCONNECTED,
NULL, NULL,
hif_drv->usr_conn_req.arg); hif_drv->usr_conn_req.arg);
...@@ -1321,7 +1321,7 @@ static inline void host_int_parse_assoc_resp_info(struct wilc_vif *vif, ...@@ -1321,7 +1321,7 @@ static inline void host_int_parse_assoc_resp_info(struct wilc_vif *vif,
memset(&conn_info, 0, sizeof(struct connect_info)); memset(&conn_info, 0, sizeof(struct connect_info));
if (mac_status == MAC_CONNECTED) { if (mac_status == MAC_STATUS_CONNECTED) {
u32 rcvd_assoc_resp_info_len; u32 rcvd_assoc_resp_info_len;
memset(rcv_assoc_resp, 0, MAX_ASSOC_RESP_FRAME_SIZE); memset(rcv_assoc_resp, 0, MAX_ASSOC_RESP_FRAME_SIZE);
...@@ -1357,20 +1357,20 @@ static inline void host_int_parse_assoc_resp_info(struct wilc_vif *vif, ...@@ -1357,20 +1357,20 @@ static inline void host_int_parse_assoc_resp_info(struct wilc_vif *vif,
} }
} }
if (mac_status == MAC_CONNECTED && if (mac_status == MAC_STATUS_CONNECTED &&
conn_info.status != SUCCESSFUL_STATUSCODE) { conn_info.status != SUCCESSFUL_STATUSCODE) {
netdev_err(vif->ndev, netdev_err(vif->ndev,
"Received MAC status is MAC_CONNECTED while the received status code in Asoc Resp is not SUCCESSFUL_STATUSCODE\n"); "Received MAC status is MAC_STATUS_CONNECTED while the received status code in Asoc Resp is not SUCCESSFUL_STATUSCODE\n");
eth_zero_addr(wilc_connected_ssid); eth_zero_addr(wilc_connected_ssid);
} else if (mac_status == MAC_DISCONNECTED) { } else if (mac_status == MAC_STATUS_DISCONNECTED) {
netdev_err(vif->ndev, "Received MAC status is MAC_DISCONNECTED\n"); netdev_err(vif->ndev, "Received MAC status is MAC_STATUS_DISCONNECTED\n");
eth_zero_addr(wilc_connected_ssid); eth_zero_addr(wilc_connected_ssid);
} }
if (hif_drv->usr_conn_req.bssid) { if (hif_drv->usr_conn_req.bssid) {
memcpy(conn_info.bssid, hif_drv->usr_conn_req.bssid, 6); memcpy(conn_info.bssid, hif_drv->usr_conn_req.bssid, 6);
if (mac_status == MAC_CONNECTED && if (mac_status == MAC_STATUS_CONNECTED &&
conn_info.status == SUCCESSFUL_STATUSCODE) { conn_info.status == SUCCESSFUL_STATUSCODE) {
memcpy(hif_drv->assoc_bssid, memcpy(hif_drv->assoc_bssid,
hif_drv->usr_conn_req.bssid, ETH_ALEN); hif_drv->usr_conn_req.bssid, ETH_ALEN);
...@@ -1390,7 +1390,7 @@ static inline void host_int_parse_assoc_resp_info(struct wilc_vif *vif, ...@@ -1390,7 +1390,7 @@ static inline void host_int_parse_assoc_resp_info(struct wilc_vif *vif,
&conn_info, mac_status, NULL, &conn_info, mac_status, NULL,
hif_drv->usr_conn_req.arg); hif_drv->usr_conn_req.arg);
if (mac_status == MAC_CONNECTED && if (mac_status == MAC_STATUS_CONNECTED &&
conn_info.status == SUCCESSFUL_STATUSCODE) { conn_info.status == SUCCESSFUL_STATUSCODE) {
wilc_set_power_mgmt(vif, 0, 0); wilc_set_power_mgmt(vif, 0, 0);
...@@ -1498,10 +1498,10 @@ static s32 handle_rcvd_gnrl_async_info(struct wilc_vif *vif, ...@@ -1498,10 +1498,10 @@ static s32 handle_rcvd_gnrl_async_info(struct wilc_vif *vif,
mac_status_additional_info = rcvd_info->buffer[9]; mac_status_additional_info = rcvd_info->buffer[9];
if (hif_drv->hif_state == HOST_IF_WAITING_CONN_RESP) { if (hif_drv->hif_state == HOST_IF_WAITING_CONN_RESP) {
host_int_parse_assoc_resp_info(vif, mac_status); host_int_parse_assoc_resp_info(vif, mac_status);
} else if ((mac_status == MAC_DISCONNECTED) && } else if ((mac_status == MAC_STATUS_DISCONNECTED) &&
(hif_drv->hif_state == HOST_IF_CONNECTED)) { (hif_drv->hif_state == HOST_IF_CONNECTED)) {
host_int_handle_disconnect(vif); host_int_handle_disconnect(vif);
} else if ((mac_status == MAC_DISCONNECTED) && } else if ((mac_status == MAC_STATUS_DISCONNECTED) &&
(hif_drv->usr_scan_req.scan_result)) { (hif_drv->usr_scan_req.scan_result)) {
del_timer(&hif_drv->scan_timer); del_timer(&hif_drv->scan_timer);
if (hif_drv->usr_scan_req.scan_result) if (hif_drv->usr_scan_req.scan_result)
......
...@@ -226,7 +226,7 @@ void wilc_mac_indicate(struct wilc *wilc, int flag) ...@@ -226,7 +226,7 @@ void wilc_mac_indicate(struct wilc *wilc, int flag)
if (flag == WILC_MAC_INDICATE_STATUS) { if (flag == WILC_MAC_INDICATE_STATUS) {
wilc_wlan_cfg_get_val(WID_STATUS, wilc_wlan_cfg_get_val(WID_STATUS,
(unsigned char *)&status, 4); (unsigned char *)&status, 4);
if (wilc->mac_status == WILC_MAC_STATUS_INIT) { if (wilc->mac_status == MAC_STATUS_INIT) {
wilc->mac_status = status; wilc->mac_status = status;
complete(&wilc->sync_event); complete(&wilc->sync_event);
} else { } else {
...@@ -725,7 +725,7 @@ int wilc1000_wlan_init(struct net_device *dev, struct wilc_vif *vif) ...@@ -725,7 +725,7 @@ int wilc1000_wlan_init(struct net_device *dev, struct wilc_vif *vif)
struct wilc *wl = vif->wilc; struct wilc *wl = vif->wilc;
if (!wl->initialized) { if (!wl->initialized) {
wl->mac_status = WILC_MAC_STATUS_INIT; wl->mac_status = MAC_STATUS_INIT;
wl->close = 0; wl->close = 0;
wlan_init_locks(dev); wlan_init_locks(dev);
......
...@@ -489,7 +489,7 @@ static void cfg_connect_result(enum conn_event conn_disconn_evt, ...@@ -489,7 +489,7 @@ static void cfg_connect_result(enum conn_event conn_disconn_evt,
connect_status = conn_info->status; connect_status = conn_info->status;
if (mac_status == MAC_DISCONNECTED && if (mac_status == MAC_STATUS_DISCONNECTED &&
conn_info->status == SUCCESSFUL_STATUSCODE) { conn_info->status == SUCCESSFUL_STATUSCODE) {
connect_status = WLAN_STATUS_UNSPECIFIED_FAILURE; connect_status = WLAN_STATUS_UNSPECIFIED_FAILURE;
wilc_wlan_set_bssid(priv->dev, null_bssid, wilc_wlan_set_bssid(priv->dev, null_bssid,
......
...@@ -48,10 +48,12 @@ struct sdio_cmd53 { ...@@ -48,10 +48,12 @@ struct sdio_cmd53 {
}; };
#define WILC_MAC_INDICATE_STATUS 0x1 #define WILC_MAC_INDICATE_STATUS 0x1
#define WILC_MAC_STATUS_INIT -1
#define WILC_MAC_INDICATE_SCAN 0x2 #define WILC_MAC_INDICATE_SCAN 0x2
#define MAC_STATUS_INIT -1
#define MAC_STATUS_CONNECTED 1
#define MAC_STATUS_DISCONNECTED 0
struct tx_complete_data { struct tx_complete_data {
int size; int size;
void *buff; void *buff;
...@@ -117,8 +119,6 @@ enum { ...@@ -117,8 +119,6 @@ enum {
G_AUTO_PREAMBLE = 2, /* Auto Preamble Selection */ G_AUTO_PREAMBLE = 2, /* Auto Preamble Selection */
}; };
#define MAC_CONNECTED 1
#define MAC_DISCONNECTED 0
enum { enum {
PASSIVE_SCAN = 0, PASSIVE_SCAN = 0,
ACTIVE_SCAN = 1, ACTIVE_SCAN = 1,
......
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