diff options
author | Nathan Binkert <binkertn@umich.edu> | 2005-10-21 19:38:02 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2005-10-21 19:38:02 -0400 |
commit | ad2ff26c66da87caf8ed9d87a0b1793b5c668aa2 (patch) | |
tree | ce7a3450049f71a16cda70c3558e89382882a0ef /dev | |
parent | cf95624e92bc25eff785f2134244f536875af110 (diff) | |
download | gem5-ad2ff26c66da87caf8ed9d87a0b1793b5c668aa2.tar.xz |
missed another pio interface name
dev/sinic.cc:
better name for both pio interfaces
--HG--
extra : convert_revision : f7821c9c28b0095b366177b4c48a4ec14c3c89ee
Diffstat (limited to 'dev')
-rw-r--r-- | dev/sinic.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dev/sinic.cc b/dev/sinic.cc index 5aa111c44..e3e1ffba0 100644 --- a/dev/sinic.cc +++ b/dev/sinic.cc @@ -108,7 +108,8 @@ Device::Device(Params *p) p->io_bus, 1, p->dma_no_allocate); } else if (p->payload_bus) { - pioInterface = newPioInterface(p->name, p->hier, p->payload_bus, this, + pioInterface = newPioInterface(p->name + ".pio", p->hier, + p->payload_bus, this, &Device::cacheAccess); pioLatency = p->pio_latency * p->payload_bus->clockRate; |