mem: Fix callback of functional access in port wrapper (#938)
In previous implementation of port_wrapper, recvFunctional() will call timing request callback. This should be a typo and this change fix the typo.
This commit is contained in:
@@ -120,7 +120,7 @@ void
|
||||
ResponsePortWrapper::recvFunctional(PacketPtr packet)
|
||||
{
|
||||
panic_if(!recvFunctionalCb, "RecvFunctionalCallback is empty.");
|
||||
recvTimingReqCb(packet);
|
||||
recvFunctionalCb(packet);
|
||||
}
|
||||
|
||||
void
|
||||
|
||||
Reference in New Issue
Block a user