Skip to content

Commit

Permalink
ath6kl: Fix WMI message structure for AP_SET_PVB
Browse files Browse the repository at this point in the history
There is a 2-octet reserved field between the flag and aid fields. Fix
that to make the target actually behave as requested.

Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
  • Loading branch information
Jouni Malinen authored and Kalle Valo committed Sep 6, 2011
1 parent 11869be commit d6e51e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions drivers/net/wireless/ath/ath6kl/wmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -2740,6 +2740,7 @@ int ath6kl_wmi_set_pvb_cmd(struct wmi *wmi, u16 aid, bool flag)

cmd = (struct wmi_ap_set_pvb_cmd *) skb->data;
cmd->aid = cpu_to_le16(aid);
cmd->rsvd = cpu_to_le16(0);
cmd->flag = cpu_to_le32(flag);

ret = ath6kl_wmi_cmd_send(wmi, skb, WMI_AP_SET_PVB_CMDID,
Expand Down
1 change: 1 addition & 0 deletions drivers/net/wireless/ath/ath6kl/wmi.h
Original file line number Diff line number Diff line change
Expand Up @@ -1922,6 +1922,7 @@ struct wmi_ap_set_mlme_cmd {

struct wmi_ap_set_pvb_cmd {
__le32 flag;
__le16 rsvd;
__le16 aid;
} __packed;

Expand Down

0 comments on commit d6e51e6

Please sign in to comment.