diff mbox series

[1/2] ath11k: Added 'ath11k' as prefix to the struct dp_htt_wbm_tx_status

Message ID 1560336554-14420-4-git-send-email-mkenna@codeaurora.org (mailing list archive)
State Accepted
Commit 78603c9f2986f2bf55f0a911e3a6b7102e4597b3
Delegated to: Kalle Valo
Headers show
Series [1/2] ath11k: Added 'ath11k' as prefix to the struct dp_htt_wbm_tx_status | expand

Commit Message

Maharaja Kennadyrajan June 12, 2019, 10:49 a.m. UTC
Renamed the struct dp_htt_wbm_tx_status by adding a prefix
'ath11k'.

Signed-off-by: Maharaja Kennadyrajan <mkenna@codeaurora.org>
---
 drivers/net/wireless/ath/ath11k/dp_tx.c | 4 ++--
 drivers/net/wireless/ath/ath11k/dp_tx.h | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

Comments

Kalle Valo June 17, 2019, 8:49 a.m. UTC | #1
Maharaja Kennadyrajan <mkenna@codeaurora.org> wrote:

> Renamed the struct dp_htt_wbm_tx_status by adding a prefix
> 'ath11k'.
> 
> Signed-off-by: Maharaja Kennadyrajan <mkenna@codeaurora.org>
> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>

2 patches applied to ath11k-bringup branch of ath.git, thanks.

78603c9f2986 ath11k: Added 'ath11k' as prefix to the struct dp_htt_wbm_tx_status
31f688e6d07a ath11k: Added prefix to all the functions in dp_tx.c file
diff mbox series

Patch

diff --git a/drivers/net/wireless/ath/ath11k/dp_tx.c b/drivers/net/wireless/ath/ath11k/dp_tx.c
index 5670796da05b..21f0dcfad09d 100644
--- a/drivers/net/wireless/ath/ath11k/dp_tx.c
+++ b/drivers/net/wireless/ath/ath11k/dp_tx.c
@@ -248,7 +248,7 @@  static void ath11k_dp_free_txbuf(struct ath11k_base *ab, u8 mac_id,
 
 static void ath11k_dp_htt_tx_complete_buf(struct ath11k_base *ab,
 					  struct dp_tx_ring *tx_ring,
-					  struct dp_htt_wbm_tx_status *ts)
+					  struct ath11k_dp_htt_wbm_tx_status *ts)
 {
 	struct sk_buff *msdu;
 	struct ieee80211_tx_info *info;
@@ -300,7 +300,7 @@  ath11k_dp_process_htt_tx_complete(struct ath11k_base *ab,
 				  u32 msdu_id, struct dp_tx_ring *tx_ring)
 {
 	struct htt_tx_wbm_completion *status_desc;
-	struct dp_htt_wbm_tx_status ts = {0};
+	struct ath11k_dp_htt_wbm_tx_status ts = {0};
 	enum hal_wbm_htt_tx_comp_status wbm_status;
 
 	status_desc = desc + HTT_TX_WBM_COMP_STATUS_OFFSET;
diff --git a/drivers/net/wireless/ath/ath11k/dp_tx.h b/drivers/net/wireless/ath/ath11k/dp_tx.h
index 751a0cec4997..373e7ed75a05 100644
--- a/drivers/net/wireless/ath/ath11k/dp_tx.h
+++ b/drivers/net/wireless/ath/ath11k/dp_tx.h
@@ -9,7 +9,7 @@ 
 #include "core.h"
 #include "hal_tx.h"
 
-struct dp_htt_wbm_tx_status {
+struct ath11k_dp_htt_wbm_tx_status {
 	u32 msdu_id;
 	bool acked;
 	int ack_rssi;