DmaDevice: fix minor type in error message.
This commit is contained in:
parent
63127cbf37
commit
27e8f3c98a
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ class DmaDevice : public PioDevice
|
||||||
} else if (if_name == "dma") {
|
} else if (if_name == "dma") {
|
||||||
if (dmaPort != NULL)
|
if (dmaPort != NULL)
|
||||||
fatal("%s: dma port already connected to %s",
|
fatal("%s: dma port already connected to %s",
|
||||||
name(), pioPort->getPeer()->name());
|
name(), dmaPort->getPeer()->name());
|
||||||
dmaPort = new DmaPort(this, sys);
|
dmaPort = new DmaPort(this, sys);
|
||||||
return dmaPort;
|
return dmaPort;
|
||||||
} else
|
} else
|
||||||
|
|
Loading…
Reference in a new issue