summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorKevin Lim <ktlim@umich.edu>2005-03-14 16:09:36 -0500
committerKevin Lim <ktlim@umich.edu>2005-03-14 16:09:36 -0500
commit3cc61bd9e2468c49c6a543d0f64ec186f5949de9 (patch)
tree46101ff402b94a26212fe522f984ad1ebb66f876 /python
parent76e6dd01ae4a534adad1d34398fefc819771a781 (diff)
downloadgem5-3cc61bd9e2468c49c6a543d0f64ec186f5949de9.tar.xz
Fix for using Python 2.4
--HG-- extra : convert_revision : 1682c4b77a76137974d3cb0d28c36e3d02e4e5cd
Diffstat (limited to 'python')
-rw-r--r--python/m5/objects/Pci.mpy2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/m5/objects/Pci.mpy b/python/m5/objects/Pci.mpy
index 4daa902ab..f7c6674f7 100644
--- a/python/m5/objects/Pci.mpy
+++ b/python/m5/objects/Pci.mpy
@@ -43,7 +43,7 @@ simobj PciConfigAll(FooPioDevice):
simobj PciDevice(DmaDevice):
type = 'PciDevice'
abstract = True
- addr = 0xffffffff
+ addr = 0xffffffffL
pci_bus = Param.Int("PCI bus")
pci_dev = Param.Int("PCI device number")
pci_func = Param.Int("PCI function code")