summaryrefslogtreecommitdiff
path: root/src/dev/x86/I8259.py
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-02-01 22:40:51 -0800
committerGabe Black <gblack@eecs.umich.edu>2009-02-01 22:40:51 -0800
commit73f579a804f33092aa2dfac09a57d6c6b2acaf3d (patch)
tree0593659f7735e91791cb69982ca6145181450fd7 /src/dev/x86/I8259.py
parent5a4eed5d34c814486086bf45d7750905de32d972 (diff)
downloadgem5-73f579a804f33092aa2dfac09a57d6c6b2acaf3d.tar.xz
X86: Add some missing default arguments.
Diffstat (limited to 'src/dev/x86/I8259.py')
-rw-r--r--src/dev/x86/I8259.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dev/x86/I8259.py b/src/dev/x86/I8259.py
index e0128d032..0a516d30a 100644
--- a/src/dev/x86/I8259.py
+++ b/src/dev/x86/I8259.py
@@ -44,7 +44,7 @@ class I8259(BasicPioDevice):
output = Param.X86IntSourcePin(X86IntSourcePin(),
'The pin this I8259 drives')
mode = Param.X86I8259CascadeMode('How this I8259 is cascaded')
- slave = Param.I8259('Slave I8259, if any')
+ slave = Param.I8259(NULL, 'Slave I8259, if any')
def pin(self, line):
return X86IntSinkPin(device=self, number=line)