104,105c104,105
< DPRINTF(DMA, "Received nacked Pkt %#x with State: %#x Addr: %#x\n",
< pkt, pkt->senderState, pkt->getAddr());
---
> DPRINTF(DMA, "Received nacked %s addr %#x\n",
> pkt->cmdString(), pkt->getAddr());
122,123c122,123
< DPRINTF(DMA, "Received response Pkt %#x with State: %#x Addr: %#x size: %#x\n",
< pkt, pkt->senderState, pkt->getAddr(), pkt->req->getSize());
---
> DPRINTF(DMA, "Received response %s addr %#x size %#x\n",
> pkt->cmdString(), pkt->getAddr(), pkt->req->getSize());
185,186c185,186
< DPRINTF(DMA, "Retry on Packet %#x with senderState: %#x\n",
< pkt, pkt->senderState);
---
> DPRINTF(DMA, "Retry on %s addr %#x\n",
> pkt->cmdString(), pkt->getAddr());
270,271c270,271
< DPRINTF(DMA, "Attempting to send Packet %#x with addr: %#x\n",
< pkt, pkt->getAddr());
---
> DPRINTF(DMA, "Attempting to send %s addr %#x\n",
> pkt->cmdString(), pkt->getAddr());