ath11k: convert ath11k_wmi_pdev_set_ps_mode() to use enum wmi_sta_ps_mode
authorKalle Valo <kvalo@codeaurora.org>
Mon, 8 Nov 2021 12:38:25 +0000 (14:38 +0200)
committerKalle Valo <kvalo@codeaurora.org>
Wed, 10 Nov 2021 12:40:37 +0000 (14:40 +0200)
It's more descriptive to use the actual enum used by the firmware instead of a
boolean so change ath11k_wmi_pdev_set_ps_mode() to use a boolean.

Tested-on: QCA6390 hw2.0 PCI WLAN.HST.1.0.1-01740-QCAHSTSWPLZ_V2_TO_X86-1

Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20211108123826.8463-1-kvalo@codeaurora.org
drivers/net/wireless/ath/ath11k/mac.c
drivers/net/wireless/ath/ath11k/wmi.c
drivers/net/wireless/ath/ath11k/wmi.h

index 50a6f88..a1d85a0 100644 (file)
@@ -5638,7 +5638,8 @@ static int ath11k_mac_op_add_interface(struct ieee80211_hw *hw,
                        goto err_peer_del;
                }
 
-               ret = ath11k_wmi_pdev_set_ps_mode(ar, arvif->vdev_id, false);
+               ret = ath11k_wmi_pdev_set_ps_mode(ar, arvif->vdev_id,
+                                                 WMI_STA_PS_MODE_DISABLED);
                if (ret) {
                        ath11k_warn(ar->ab, "failed to disable vdev %d ps mode: %d\n",
                                    arvif->vdev_id, ret);
index 5ae2ef4..b9bfe04 100644 (file)
@@ -1244,7 +1244,8 @@ int ath11k_wmi_pdev_set_param(struct ath11k *ar, u32 param_id,
        return ret;
 }
 
-int ath11k_wmi_pdev_set_ps_mode(struct ath11k *ar, int vdev_id, u32 enable)
+int ath11k_wmi_pdev_set_ps_mode(struct ath11k *ar, int vdev_id,
+                               enum wmi_sta_ps_mode psmode)
 {
        struct ath11k_pdev_wmi *wmi = ar->wmi;
        struct wmi_pdev_set_ps_mode_cmd *cmd;
@@ -1259,7 +1260,7 @@ int ath11k_wmi_pdev_set_ps_mode(struct ath11k *ar, int vdev_id, u32 enable)
        cmd->tlv_header = FIELD_PREP(WMI_TLV_TAG, WMI_TAG_STA_POWERSAVE_MODE_CMD) |
                          FIELD_PREP(WMI_TLV_LEN, sizeof(*cmd) - TLV_HDR_SIZE);
        cmd->vdev_id = vdev_id;
-       cmd->sta_ps_mode = enable;
+       cmd->sta_ps_mode = psmode;
 
        ret = ath11k_wmi_cmd_send(wmi, skb, WMI_STA_POWERSAVE_MODE_CMDID);
        if (ret) {
@@ -1269,7 +1270,7 @@ int ath11k_wmi_pdev_set_ps_mode(struct ath11k *ar, int vdev_id, u32 enable)
 
        ath11k_dbg(ar->ab, ATH11K_DBG_WMI,
                   "WMI vdev set psmode %d vdev id %d\n",
-                  enable, vdev_id);
+                  psmode, vdev_id);
 
        return ret;
 }
index 0584e68..93e2992 100644 (file)
@@ -5351,7 +5351,8 @@ int ath11k_wmi_set_peer_param(struct ath11k *ar, const u8 *peer_addr,
                              u32 vdev_id, u32 param_id, u32 param_val);
 int ath11k_wmi_pdev_set_param(struct ath11k *ar, u32 param_id,
                              u32 param_value, u8 pdev_id);
-int ath11k_wmi_pdev_set_ps_mode(struct ath11k *ar, int vdev_id, u32 enable);
+int ath11k_wmi_pdev_set_ps_mode(struct ath11k *ar, int vdev_id,
+                               enum wmi_sta_ps_mode psmode);
 int ath11k_wmi_wait_for_unified_ready(struct ath11k_base *ab);
 int ath11k_wmi_cmd_init(struct ath11k_base *ab);
 int ath11k_wmi_wait_for_service_ready(struct ath11k_base *ab);