More DPRINTF cleanup.

--HG--
extra : convert_revision : db89cea42b46476d19333038522a6c144eafdab1
This commit is contained in:
Steve Reinhardt 2007-02-06 23:53:48 -08:00
parent 51e54f519d
commit 23d970e6b9
2 changed files with 4 additions and 7 deletions

View file

@ -180,7 +180,8 @@ Bus::recvTiming(PacketPtr pkt)
}
} else {
//Snoop didn't succeed
DPRINTF(Bus, "Adding a retry to RETRY list %i\n", pktPort);
DPRINTF(Bus, "Adding a retry to RETRY list %d\n",
pktPort->getId());
addToRetryList(pktPort);
return false;
}
@ -207,7 +208,8 @@ Bus::recvTiming(PacketPtr pkt)
}
// Packet not successfully sent. Leave or put it on the retry list.
DPRINTF(Bus, "Adding a retry to RETRY list %i\n", pktPort);
DPRINTF(Bus, "Adding a retry to RETRY list %d\n",
pktPort->getId());
addToRetryList(pktPort);
return false;
}

View file

@ -171,11 +171,6 @@ fixPacket(PacketPtr func, PacketPtr timing)
assert(!(funcStart > timingEnd || timingStart > funcEnd));
if (DTRACE(FunctionalAccess)) {
DebugOut() << func;
DebugOut() << timing;
}
// this packet can't solve our problem, continue on
if (!timing->hasData())
return true;