diff options
author | Steve Reinhardt <Steve.Reinhardt@amd.com> | 2008-11-10 14:45:31 -0800 |
---|---|---|
committer | Steve Reinhardt <Steve.Reinhardt@amd.com> | 2008-11-10 14:45:31 -0800 |
commit | 27e8f3c98a4b1c56e16ce5f80c7ad992083ccef9 (patch) | |
tree | d8f300b7e874c4ee478e7b1896f5c17ae366c9a3 /src/dev | |
parent | 63127cbf37ac9b37096c5ede06c929069a5ceb49 (diff) | |
download | gem5-27e8f3c98a4b1c56e16ce5f80c7ad992083ccef9.tar.xz |
DmaDevice: fix minor type in error message.
Diffstat (limited to 'src/dev')
-rw-r--r-- | src/dev/io_device.hh | 2 |
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 |