Commit 666a73f3 authored by Kalle Valo's avatar Kalle Valo

ath10k: make ath10k_wmi_cmd_send() public

We need this function to send wmi packets from testmode.c.
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent ca5c671f
...@@ -624,7 +624,7 @@ int ath10k_wmi_wait_for_unified_ready(struct ath10k *ar) ...@@ -624,7 +624,7 @@ int ath10k_wmi_wait_for_unified_ready(struct ath10k *ar)
return ret; return ret;
} }
static struct sk_buff *ath10k_wmi_alloc_skb(struct ath10k *ar, u32 len) struct sk_buff *ath10k_wmi_alloc_skb(struct ath10k *ar, u32 len)
{ {
struct sk_buff *skb; struct sk_buff *skb;
u32 round_len = roundup(len, 4); u32 round_len = roundup(len, 4);
...@@ -725,8 +725,7 @@ static void ath10k_wmi_op_ep_tx_credits(struct ath10k *ar) ...@@ -725,8 +725,7 @@ static void ath10k_wmi_op_ep_tx_credits(struct ath10k *ar)
wake_up(&ar->wmi.tx_credits_wq); wake_up(&ar->wmi.tx_credits_wq);
} }
static int ath10k_wmi_cmd_send(struct ath10k *ar, struct sk_buff *skb, int ath10k_wmi_cmd_send(struct ath10k *ar, struct sk_buff *skb, u32 cmd_id)
u32 cmd_id)
{ {
int ret = -EOPNOTSUPP; int ret = -EOPNOTSUPP;
......
...@@ -4737,6 +4737,10 @@ int ath10k_wmi_wait_for_service_ready(struct ath10k *ar); ...@@ -4737,6 +4737,10 @@ int ath10k_wmi_wait_for_service_ready(struct ath10k *ar);
int ath10k_wmi_wait_for_unified_ready(struct ath10k *ar); int ath10k_wmi_wait_for_unified_ready(struct ath10k *ar);
int ath10k_wmi_connect(struct ath10k *ar); int ath10k_wmi_connect(struct ath10k *ar);
struct sk_buff *ath10k_wmi_alloc_skb(struct ath10k *ar, u32 len);
int ath10k_wmi_cmd_send(struct ath10k *ar, struct sk_buff *skb, u32 cmd_id);
int ath10k_wmi_pdev_set_channel(struct ath10k *ar, int ath10k_wmi_pdev_set_channel(struct ath10k *ar,
const struct wmi_channel_arg *); const struct wmi_channel_arg *);
int ath10k_wmi_pdev_suspend_target(struct ath10k *ar, u32 suspend_opt); int ath10k_wmi_pdev_suspend_target(struct ath10k *ar, u32 suspend_opt);
......
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