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:
Andreas Hansson 2013-06-27 05:49:49 -04:00
parent 3d19bccb93
commit 9a1169f3d7

View file

@ -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