struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);
        int ret;
 
-       if (trans->trans_cfg->device_family == IWL_DEVICE_FAMILY_AX210) {
+       if (trans->trans_cfg->device_family == IWL_DEVICE_FAMILY_AX210)
                iwl_write_umac_prph(trans, UREG_DOORBELL_TO_ISR6,
                                    suspend ? UREG_DOORBELL_TO_ISR6_SUSPEND :
                                              UREG_DOORBELL_TO_ISR6_RESUME);
-       } else if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_BZ) {
+       else if (trans->trans_cfg->device_family >= IWL_DEVICE_FAMILY_BZ)
                iwl_write32(trans, CSR_IPC_SLEEP_CONTROL,
                            suspend ? CSR_IPC_SLEEP_CONTROL_SUSPEND :
                                      CSR_IPC_SLEEP_CONTROL_RESUME);
-               iwl_write_umac_prph(trans, UREG_DOORBELL_TO_ISR6,
-                                   UREG_DOORBELL_TO_ISR6_SLEEP_CTRL);
-       } else {
+       else
                return 0;
-       }
 
        ret = wait_event_timeout(trans_pcie->sx_waitq,
                                 trans_pcie->sx_complete, 2 * HZ);