]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
ath9k_hw: small optimization
authorMohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
Fri, 24 Aug 2012 10:57:06 +0000 (16:27 +0530)
committerJohn W. Linville <linville@tuxdriver.com>
Fri, 7 Sep 2012 19:03:39 +0000 (15:03 -0400)
Assign the MCI BT state locally, rather than unnecessarily calling
ar9003_mci_state and updating it.

Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qca.qualcomm.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath/ath9k/ar9003_mci.c
drivers/net/wireless/ath/ath9k/ar9003_mci.h
drivers/net/wireless/ath/ath9k/mci.c

index 9a34fcaae3ff59621d38f69bfafa58cdcb6a2d03..ff53091ea6dfaee399b195bb477a084281305c22 100644 (file)
@@ -1201,12 +1201,6 @@ u32 ar9003_mci_state(struct ath_hw *ah, u32 state_type)
 
                ar9003_mci_2g5g_switch(ah, false);
                break;
-       case MCI_STATE_SET_BT_CAL_START:
-               mci->bt_state = MCI_BT_CAL_START;
-               break;
-       case MCI_STATE_SET_BT_CAL:
-               mci->bt_state = MCI_BT_CAL;
-               break;
        case MCI_STATE_RESET_REQ_WAKE:
                ar9003_mci_reset_req_wakeup(ah);
                mci->update_2g5g = true;
index d33b8e1288554dd502dc290d68c8c45684d2e1a8..f3bef8d69edd81684664dbcf55ddb581760a37a8 100644 (file)
@@ -190,8 +190,6 @@ enum mci_bt_state {
 enum mci_state_type {
        MCI_STATE_ENABLE,
        MCI_STATE_SET_BT_AWAKE,
-       MCI_STATE_SET_BT_CAL_START,
-       MCI_STATE_SET_BT_CAL,
        MCI_STATE_LAST_SCHD_MSG_OFFSET,
        MCI_STATE_REMOTE_SLEEP,
        MCI_STATE_RESET_REQ_WAKE,
index fb536e7e661b630a464700185b5ff845f4e83982..9ee1f89f400017c0f489b9ee38837987eeb0b818 100644 (file)
@@ -201,7 +201,7 @@ static void ath_mci_cal_msg(struct ath_softc *sc, u8 opcode, u8 *rx_payload)
        switch (opcode) {
        case MCI_GPM_BT_CAL_REQ:
                if (mci_hw->bt_state == MCI_BT_AWAKE) {
-                       ar9003_mci_state(ah, MCI_STATE_SET_BT_CAL_START);
+                       mci_hw->bt_state = MCI_BT_CAL_START;
                        ath9k_queue_reset(sc, RESET_TYPE_MCI);
                }
                ath_dbg(common, MCI, "MCI State : %d\n", mci_hw->bt_state);