134a135
> int cacheBlockSize() { return peerBlockSize(); }
264,265c265,268
< void dmaRead(Addr addr, int size, Event *event, uint8_t *data = NULL)
< { dmaPort->dmaAction(MemCmd::ReadReq, addr, size, event, data); }
---
> void dmaRead(Addr addr, int size, Event *event, uint8_t *data)
> {
> dmaPort->dmaAction(MemCmd::ReadReq, addr, size, event, data);
> }
270a274,275
> int cacheBlockSize() { return dmaPort->cacheBlockSize(); }
>