diff options
Diffstat (limited to 'src/mem/dram_ctrl.hh')
-rw-r--r-- | src/mem/dram_ctrl.hh | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/mem/dram_ctrl.hh b/src/mem/dram_ctrl.hh index 1ea04fa56..bf0be04a7 100644 --- a/src/mem/dram_ctrl.hh +++ b/src/mem/dram_ctrl.hh @@ -671,12 +671,6 @@ class DRAMCtrl : public AbstractMemory std::deque<DRAMPacket*> respQueue; /** - * If we need to drain, keep the drain manager around until we're - * done here. - */ - DrainManager *drainManager; - - /** * Vector of ranks */ std::vector<Rank*> ranks; @@ -878,7 +872,7 @@ class DRAMCtrl : public AbstractMemory DRAMCtrl(const DRAMCtrlParams* p); - unsigned int drain(DrainManager* dm); + DrainState drain() M5_ATTR_OVERRIDE; virtual BaseSlavePort& getSlavePort(const std::string& if_name, PortID idx = InvalidPortID); |