dev-amdgpu: Patch forgotten port after mem port owner deprecation
Change-Id: I82f88b8962d9f04521e549ca1383c42f2b5b3ffc Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/67631 Maintainer: Bobby Bruce <bbruce@ucdavis.edu> Reviewed-by: Jason Lowe-Power <power.jg@gmail.com> Maintainer: Jason Lowe-Power <power.jg@gmail.com> Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Bobby Bruce <bbruce@ucdavis.edu>
This commit is contained in:
committed by
Gabriel B.
parent
a513e06a1b
commit
8a774e07b2
@@ -190,7 +190,7 @@ GPUCoalescer::GPUCoalescer(const Params &p)
|
||||
false, Event::Progress_Event_Pri),
|
||||
uncoalescedTable(this),
|
||||
deadlockCheckEvent([this]{ wakeup(); }, "GPUCoalescer deadlock check"),
|
||||
gmTokenPort(name() + ".gmTokenPort", this)
|
||||
gmTokenPort(name() + ".gmTokenPort")
|
||||
{
|
||||
m_store_waiting_on_load_cycles = 0;
|
||||
m_store_waiting_on_store_cycles = 0;
|
||||
|
||||
@@ -216,9 +216,9 @@ class GPUCoalescer : public RubyPort
|
||||
class GMTokenPort : public TokenResponsePort
|
||||
{
|
||||
public:
|
||||
GMTokenPort(const std::string& name, ClockedObject *owner,
|
||||
GMTokenPort(const std::string& name,
|
||||
PortID id = InvalidPortID)
|
||||
: TokenResponsePort(name, owner, id)
|
||||
: TokenResponsePort(name, id)
|
||||
{ }
|
||||
~GMTokenPort() { }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user