mem: Remove CoherentBus snoop port unused private member
This patch removes an unused member to avoid getting compiler warnings when using clang.
This commit is contained in:
parent
3d19bccb93
commit
9a1169f3d7
1 changed files with 1 additions and 4 deletions
|
@ -232,9 +232,6 @@ class CoherentBus : public BaseBus
|
||||||
/** The port which we mirror internally. */
|
/** The port which we mirror internally. */
|
||||||
SlavePort& slavePort;
|
SlavePort& slavePort;
|
||||||
|
|
||||||
/** The bus to which this port belongs. */
|
|
||||||
CoherentBus &bus;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -242,7 +239,7 @@ class CoherentBus : public BaseBus
|
||||||
*/
|
*/
|
||||||
SnoopRespPort(SlavePort& slave_port, CoherentBus& _bus) :
|
SnoopRespPort(SlavePort& slave_port, CoherentBus& _bus) :
|
||||||
MasterPort(slave_port.name() + ".snoopRespPort", &_bus),
|
MasterPort(slave_port.name() + ".snoopRespPort", &_bus),
|
||||||
slavePort(slave_port), bus(_bus) { }
|
slavePort(slave_port) { }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Override the sending of retries and pass them on through
|
* Override the sending of retries and pass them on through
|
||||||
|
|
Loading…
Reference in a new issue