aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPontus Fuchs <pontus.fuchs@gmail.com>2014-02-12 14:04:40 -0500
committerJohn W. Linville <linville@tuxdriver.com>2014-02-13 15:20:17 -0500
commit08762322c3de33d933906c36e7b47bb6624dd35c (patch)
tree3492396b481c7b1c36e62305db80f388a818ac20
parent6b27fe51675fd462967b824f63c5c009e9616363 (diff)
wcn36xx: Fix copy paste error hal_exit_bmps -> hal_keep_alive
Signed-off-by: Pontus Fuchs <pontus.fuchs@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/ath/wcn36xx/smd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/wcn36xx/smd.c b/drivers/net/wireless/ath/wcn36xx/smd.c
index 750626b0e22d..8a57dfe6c6e8 100644
--- a/drivers/net/wireless/ath/wcn36xx/smd.c
+++ b/drivers/net/wireless/ath/wcn36xx/smd.c
@@ -1637,12 +1637,12 @@ int wcn36xx_smd_keep_alive_req(struct wcn36xx *wcn,
1637 1637
1638 ret = wcn36xx_smd_send_and_wait(wcn, msg_body.header.len); 1638 ret = wcn36xx_smd_send_and_wait(wcn, msg_body.header.len);
1639 if (ret) { 1639 if (ret) {
1640 wcn36xx_err("Sending hal_exit_bmps failed\n"); 1640 wcn36xx_err("Sending hal_keep_alive failed\n");
1641 goto out; 1641 goto out;
1642 } 1642 }
1643 ret = wcn36xx_smd_rsp_status_check(wcn->hal_buf, wcn->hal_rsp_len); 1643 ret = wcn36xx_smd_rsp_status_check(wcn->hal_buf, wcn->hal_rsp_len);
1644 if (ret) { 1644 if (ret) {
1645 wcn36xx_err("hal_exit_bmps response failed err=%d\n", ret); 1645 wcn36xx_err("hal_keep_alive response failed err=%d\n", ret);
1646 goto out; 1646 goto out;
1647 } 1647 }
1648out: 1648out: