Commit 902b4629 authored by Raja Mani's avatar Raja Mani Committed by Kalle Valo

ath6kl: Remove few unused WMI stuff

* Removed unused WOW_MAX_FILTER_LISTS macro.

* Removed empty ath6kl_wmi_get_wow_list_event_rx() function.
  List of configured WOW patterns are maintained in CFG layer
  itself. No need to have this function in ath6kl to get
  configured WOW pattern list. It can added later if we need
  it for debugging.
Signed-off-by: default avatarRaja Mani <rmani@qca.qualcomm.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent eae9e066
...@@ -2576,15 +2576,6 @@ int ath6kl_wmi_del_wow_pattern_cmd(struct wmi *wmi, u8 if_idx, ...@@ -2576,15 +2576,6 @@ int ath6kl_wmi_del_wow_pattern_cmd(struct wmi *wmi, u8 if_idx,
return ret; return ret;
} }
static int ath6kl_wmi_get_wow_list_event_rx(struct wmi *wmi, u8 * datap,
int len)
{
if (len < sizeof(struct wmi_get_wow_list_reply))
return -EINVAL;
return 0;
}
static int ath6kl_wmi_cmd_send_xtnd(struct wmi *wmi, struct sk_buff *skb, static int ath6kl_wmi_cmd_send_xtnd(struct wmi *wmi, struct sk_buff *skb,
enum wmix_command_id cmd_id, enum wmix_command_id cmd_id,
enum wmi_sync_flag sync_flag) enum wmi_sync_flag sync_flag)
...@@ -3295,7 +3286,6 @@ int ath6kl_wmi_control_rx(struct wmi *wmi, struct sk_buff *skb) ...@@ -3295,7 +3286,6 @@ int ath6kl_wmi_control_rx(struct wmi *wmi, struct sk_buff *skb)
break; break;
case WMI_GET_WOW_LIST_EVENTID: case WMI_GET_WOW_LIST_EVENTID:
ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_WOW_LIST_EVENTID\n"); ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_WOW_LIST_EVENTID\n");
ret = ath6kl_wmi_get_wow_list_event_rx(wmi, datap, len);
break; break;
case WMI_GET_PMKID_LIST_EVENTID: case WMI_GET_PMKID_LIST_EVENTID:
ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_PMKID_LIST_EVENTID\n"); ath6kl_dbg(ATH6KL_DBG_WMI, "WMI_GET_PMKID_LIST_EVENTID\n");
......
...@@ -1795,7 +1795,6 @@ struct wmi_set_appie_cmd { ...@@ -1795,7 +1795,6 @@ struct wmi_set_appie_cmd {
#define WSC_REG_ACTIVE 1 #define WSC_REG_ACTIVE 1
#define WSC_REG_INACTIVE 0 #define WSC_REG_INACTIVE 0
#define WOW_MAX_FILTER_LISTS 1
#define WOW_MAX_FILTERS_PER_LIST 4 #define WOW_MAX_FILTERS_PER_LIST 4
#define WOW_PATTERN_SIZE 64 #define WOW_PATTERN_SIZE 64
#define WOW_MASK_SIZE 64 #define WOW_MASK_SIZE 64
...@@ -1866,19 +1865,6 @@ struct wmi_del_wow_pattern_cmd { ...@@ -1866,19 +1865,6 @@ struct wmi_del_wow_pattern_cmd {
__le16 filter_id; __le16 filter_id;
} __packed; } __packed;
/* WMI_GET_WOW_LIST_CMD reply */
struct wmi_get_wow_list_reply {
/* number of patterns in reply */
u8 num_filters;
/* this is filter # x of total num_filters */
u8 this_filter_num;
u8 wow_mode;
u8 host_mode;
struct wow_filter wow_filters[1];
} __packed;
/* WMI_SET_AKMP_PARAMS_CMD */ /* WMI_SET_AKMP_PARAMS_CMD */
struct wmi_pmkid { struct wmi_pmkid {
......
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