From: Steve Reinhardt Date: Mon, 10 Nov 2008 22:45:31 +0000 (-0800) Subject: DmaDevice: fix minor type in error message. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=27e8f3c98a4b1c56e16ce5f80c7ad992083ccef9;p=gem5.git DmaDevice: fix minor type in error message. --- diff --git a/src/dev/io_device.hh b/src/dev/io_device.hh index e18489378..70af6093d 100644 --- a/src/dev/io_device.hh +++ b/src/dev/io_device.hh @@ -297,7 +297,7 @@ class DmaDevice : public PioDevice } else if (if_name == "dma") { if (dmaPort != NULL) fatal("%s: dma port already connected to %s", - name(), pioPort->getPeer()->name()); + name(), dmaPort->getPeer()->name()); dmaPort = new DmaPort(this, sys); return dmaPort; } else