__le32 status;
 } __packed;
 
-struct hif_pm_mode {
+struct hif_req_set_pm_mode {
        u8     enter_psm:1;
        u8     reserved:6;
        u8     fast_psm:1;
-} __packed;
-
-struct hif_req_set_pm_mode {
-       struct hif_pm_mode pm_mode;
        u8     fast_psm_idle_period;
        u8     ap_psm_change_period;
        u8     min_auto_ps_poll_period;
 
        if (!hif)
                return -ENOMEM;
        if (ps) {
-               body->pm_mode.enter_psm = 1;
+               body->enter_psm = 1;
                // Firmware does not support more than 128ms
                body->fast_psm_idle_period = min(dynamic_ps_timeout * 2, 255);
                if (body->fast_psm_idle_period)
-                       body->pm_mode.fast_psm = 1;
+                       body->fast_psm = 1;
        }
        wfx_fill_header(hif, wvif->id, HIF_REQ_ID_SET_PM_MODE, sizeof(*body));
        ret = wfx_cmd_send(wvif->wdev, hif, NULL, 0, false);