Skip to content

Commit

Permalink
ath6kl: Use bit field macros to maintain wlan enabled and disabled st…
Browse files Browse the repository at this point in the history
…atus

Signed-off-by: Raja Mani <rmani@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
  • Loading branch information
Raja Mani authored and Kalle Valo committed Aug 9, 2011
1 parent c8790cb commit 575b5f3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion drivers/net/wireless/ath/ath6kl/cfg80211.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ static bool ath6kl_cfg80211_ready(struct ath6kl *ar)
return false;
}

if (ar->wlan_state == WLAN_DISABLED) {
if (!test_bit(WLAN_ENABLED, &ar->flag)) {
ath6kl_err("wlan disabled\n");
return false;
}
Expand Down
7 changes: 1 addition & 6 deletions drivers/net/wireless/ath/ath6kl/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,6 @@ enum sme_state {
SME_CONNECTED
};

enum ath6kl_wlan_state {
WLAN_DISABLED,
WLAN_ENABLED
};

struct skb_hold_q {
struct sk_buff *skb;
bool is_amsdu;
Expand Down Expand Up @@ -365,6 +360,7 @@ struct ath6kl_req_key {
#define DESTROY_IN_PROGRESS 9
#define NETDEV_REGISTERED 10
#define SKIP_SCAN 11
#define WLAN_ENABLED 12

struct ath6kl {
struct device *dev;
Expand Down Expand Up @@ -401,7 +397,6 @@ struct ath6kl {
u8 tx_pwr;
struct net_device_stats net_stats;
struct target_stats target_stats;
enum ath6kl_wlan_state wlan_state;
struct ath6kl_node_mapping node_map[MAX_NODE_NUM];
u8 ibss_ps_enable;
u8 node_num;
Expand Down
4 changes: 2 additions & 2 deletions drivers/net/wireless/ath/ath6kl/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ struct ath6kl *ath6kl_core_alloc(struct device *sdev)
init_netdev(dev);

ar->net_dev = dev;
ar->wlan_state = WLAN_ENABLED;
set_bit(WLAN_ENABLED, &ar->flag);

ar->wlan_pwr_state = WLAN_POWER_STATE_ON;

Expand Down Expand Up @@ -1239,7 +1239,7 @@ void ath6kl_stop_txrx(struct ath6kl *ar)
if (ar->wlan_pwr_state != WLAN_POWER_STATE_CUT_PWR)
ath6kl_stop_endpoint(ndev, false, true);

ar->wlan_state = WLAN_DISABLED;
clear_bit(WLAN_ENABLED, &ar->flag);
}

/*
Expand Down
4 changes: 2 additions & 2 deletions drivers/net/wireless/ath/ath6kl/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1275,7 +1275,7 @@ static int ath6kl_open(struct net_device *dev)

spin_lock_irqsave(&ar->lock, flags);

ar->wlan_state = WLAN_ENABLED;
set_bit(WLAN_ENABLED, &ar->flag);

if (test_bit(CONNECTED, &ar->flag)) {
netif_carrier_on(dev);
Expand All @@ -1301,7 +1301,7 @@ static int ath6kl_close(struct net_device *dev)
0, 0, 0))
return -EIO;

ar->wlan_state = WLAN_DISABLED;
clear_bit(WLAN_ENABLED, &ar->flag);
}

ath6kl_cfg80211_scan_complete_event(ar, -ECANCELED);
Expand Down

0 comments on commit 575b5f3

Please sign in to comment.