diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2019-01-25 14:26:21 +0000 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2019-02-12 09:43:00 +0000 |
commit | ef71a987c1987f7543d3bf76ed9e5ce62f4d1daa (patch) | |
tree | c672aa096c0088820c7ffa341b2d603cef6f66d6 /src/dev/x86/SouthBridge.py | |
parent | 9fbfb45e51e657b364334a1c96ba23698d181edb (diff) | |
download | gem5-ef71a987c1987f7543d3bf76ed9e5ce62f4d1daa.tar.xz |
python: Don't assume SimObjects live in the global namespace
The importer in Python 3 doesn't like the way we import SimObjects
from the global namespace. Convert the existing SimObject declarations
to import from m5.objects. As a side-effect, this makes these files
consistent with configuration files.
Change-Id: I11153502b430822130722839e1fa767b82a027aa
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/c/15981
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Reviewed-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Diffstat (limited to 'src/dev/x86/SouthBridge.py')
-rw-r--r-- | src/dev/x86/SouthBridge.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/dev/x86/SouthBridge.py b/src/dev/x86/SouthBridge.py index 704656594..7029eb358 100644 --- a/src/dev/x86/SouthBridge.py +++ b/src/dev/x86/SouthBridge.py @@ -28,15 +28,15 @@ from m5.params import * from m5.proxy import * -from Cmos import Cmos -from I8042 import I8042 -from I82094AA import I82094AA -from I8237 import I8237 -from I8254 import I8254 -from I8259 import I8259 -from Ide import IdeController -from PcSpeaker import PcSpeaker -from X86IntPin import X86IntLine +from m5.objects.Cmos import Cmos +from m5.objects.I8042 import I8042 +from m5.objects.I82094AA import I82094AA +from m5.objects.I8237 import I8237 +from m5.objects.I8254 import I8254 +from m5.objects.I8259 import I8259 +from m5.objects.Ide import IdeController +from m5.objects.PcSpeaker import PcSpeaker +from m5.objects.X86IntPin import X86IntLine from m5.SimObject import SimObject def x86IOAddress(port): |