unsigned long *flags);
        void (*set_bits_mask)(struct iwl_trans *trans, u32 reg, u32 mask,
                              u32 value);
-       int  (*suspend)(struct iwl_trans *trans);
-       void (*resume)(struct iwl_trans *trans);
 
        struct iwl_trans_dump_data *(*dump_data)(struct iwl_trans *trans,
                                                 u32 dump_mask);
        return trans->ops->d3_resume(trans, status, test, reset);
 }
 
-static inline int iwl_trans_suspend(struct iwl_trans *trans)
-{
-       if (!trans->ops->suspend)
-               return 0;
-
-       return trans->ops->suspend(trans);
-}
-
-static inline void iwl_trans_resume(struct iwl_trans *trans)
-{
-       if (trans->ops->resume)
-               trans->ops->resume(trans);
-}
-
 static inline struct iwl_trans_dump_data *
 iwl_trans_dump_data(struct iwl_trans *trans, u32 dump_mask)
 {
 
 {
        struct iwl_mvm *mvm = IWL_MAC80211_GET_MVM(hw);
        struct iwl_trans *trans = mvm->trans;
-       int ret;
 
        iwl_mvm_pause_tcm(mvm, true);
 
        iwl_fw_runtime_suspend(&mvm->fwrt);
 
-       ret = iwl_trans_suspend(trans);
-       if (ret)
-               return ret;
-
        trans->system_pm_mode = IWL_PLAT_PM_MODE_D3;
 
        return __iwl_mvm_suspend(hw, wowlan, false);
 
 static int iwl_mvm_resume_d3(struct iwl_mvm *mvm)
 {
-       iwl_trans_resume(mvm->trans);
-
        return __iwl_mvm_resume(mvm, false);
 }
 
 
        iwl_trans_sync_nmi_with_addr(trans, inta_addr, sw_err_bit);
 }
 
-#ifdef CONFIG_PM_SLEEP
-static int iwl_trans_pcie_suspend(struct iwl_trans *trans)
-{
-       return 0;
-}
-
-static void iwl_trans_pcie_resume(struct iwl_trans *trans)
-{
-}
-#endif /* CONFIG_PM_SLEEP */
-
 #define IWL_TRANS_COMMON_OPS                                           \
        .op_mode_leave = iwl_trans_pcie_op_mode_leave,                  \
        .write8 = iwl_trans_pcie_write8,                                \
        .interrupts = iwl_trans_pci_interrupts,                         \
        .sync_nmi = iwl_trans_pcie_sync_nmi                             \
 
-#ifdef CONFIG_PM_SLEEP
-#define IWL_TRANS_PM_OPS                                               \
-       .suspend = iwl_trans_pcie_suspend,                              \
-       .resume = iwl_trans_pcie_resume,
-#else
-#define IWL_TRANS_PM_OPS
-#endif /* CONFIG_PM_SLEEP */
-
 static const struct iwl_trans_ops trans_ops_pcie = {
        IWL_TRANS_COMMON_OPS,
-       IWL_TRANS_PM_OPS
        .start_hw = iwl_trans_pcie_start_hw,
        .fw_alive = iwl_trans_pcie_fw_alive,
        .start_fw = iwl_trans_pcie_start_fw,
 
 static const struct iwl_trans_ops trans_ops_pcie_gen2 = {
        IWL_TRANS_COMMON_OPS,
-       IWL_TRANS_PM_OPS
        .start_hw = iwl_trans_pcie_start_hw,
        .fw_alive = iwl_trans_pcie_gen2_fw_alive,
        .start_fw = iwl_trans_pcie_gen2_start_fw,