diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2012-02-14 14:15:30 -0500 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2012-02-14 14:15:30 -0500 |
commit | 6cf9f182f678e4ddf2a2b98a5093a7418353217c (patch) | |
tree | 9de2665814818b7ce04cf7b2c85cc907b71a3581 /src/dev/mips | |
parent | ac91f90145f824b202d79a9e275fc5cee1071159 (diff) | |
download | gem5-6cf9f182f678e4ddf2a2b98a5093a7418353217c.tar.xz |
MEM: Fix residual bus ports and make them master/slave
This patch cleans up a number of remaining uses of bus.port which
is now split into bus.master and bus.slave. The only non-trivial change
is the memtest where the level building now has to be aware of the role
of the ports used in the previous level.
Diffstat (limited to 'src/dev/mips')
-rwxr-xr-x | src/dev/mips/Malta.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dev/mips/Malta.py b/src/dev/mips/Malta.py index ddde06687..23a5e5c8f 100755 --- a/src/dev/mips/Malta.py +++ b/src/dev/mips/Malta.py @@ -63,6 +63,6 @@ class Malta(Platform): # earlier, since the bus object itself is typically defined at the # System level. def attachIO(self, bus): - self.cchip.pio = bus.port - self.io.pio = bus.port - self.uart.pio = bus.port + self.cchip.pio = bus.master + self.io.pio = bus.master + self.uart.pio = bus.master |