mem: Remove stale argument from a DPRINTF in the cache code
Change-Id: I70dd11c23b45dfc606ef08233d2e50fcc0817505 Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
This commit is contained in:
parent
7c291677a8
commit
f4cc3a4d20
1 changed files with 1 additions and 2 deletions
3
src/mem/cache/cache.cc
vendored
3
src/mem/cache/cache.cc
vendored
|
@ -733,8 +733,7 @@ Cache::recvTimingReq(PacketPtr pkt)
|
|||
cpuSidePort->schedTimingResp(pkt, request_time, true);
|
||||
} else {
|
||||
DPRINTF(Cache, "%s satisfied %s addr %#llx, no response needed\n",
|
||||
__func__, pkt->cmdString(), pkt->getAddr(),
|
||||
pkt->getSize());
|
||||
__func__, pkt->cmdString(), pkt->getAddr());
|
||||
|
||||
// queue the packet for deletion, as the sending cache is
|
||||
// still relying on it; if the block is found in access(),
|
||||
|
|
Loading…
Reference in a new issue