summaryrefslogtreecommitdiff
path: root/src/dev/io_device.hh
diff options
context:
space:
mode:
authorSteve Reinhardt <Steve.Reinhardt@amd.com>2008-11-10 14:45:31 -0800
committerSteve Reinhardt <Steve.Reinhardt@amd.com>2008-11-10 14:45:31 -0800
commit27e8f3c98a4b1c56e16ce5f80c7ad992083ccef9 (patch)
treed8f300b7e874c4ee478e7b1896f5c17ae366c9a3 /src/dev/io_device.hh
parent63127cbf37ac9b37096c5ede06c929069a5ceb49 (diff)
downloadgem5-27e8f3c98a4b1c56e16ce5f80c7ad992083ccef9.tar.xz
DmaDevice: fix minor type in error message.
Diffstat (limited to 'src/dev/io_device.hh')
-rw-r--r--src/dev/io_device.hh2
1 files changed, 1 insertions, 1 deletions
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