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:
Yan Lee
2024-03-18 23:21:43 +08:00
committed by GitHub
parent 0ec8cf8d05
commit 84da503d37

View File

@@ -120,7 +120,7 @@ void
ResponsePortWrapper::recvFunctional(PacketPtr packet)
{
panic_if(!recvFunctionalCb, "RecvFunctionalCallback is empty.");
recvTimingReqCb(packet);
recvFunctionalCb(packet);
}
void