diff options
author | Gabe Black <gabeblack@google.com> | 2017-11-10 03:39:28 -0800 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2017-11-13 17:12:56 +0000 |
commit | c53dced690f597a2c243febff1e518e4e5208b70 (patch) | |
tree | 7d28529f1b5dfe2f0dcf38df77656d3e9d842b51 | |
parent | 237d2f260bd8645d31b083879784e96e9c5c27f5 (diff) | |
download | gem5-c53dced690f597a2c243febff1e518e4e5208b70.tar.xz |
config: Export the "Current" param type from m5.params.
This type was defined, but it was never added to __all__.
Change-Id: I5414829a9562790416f5ceab71af01503d142903
Reviewed-on: https://gem5-review.googlesource.com/5624
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
-rw-r--r-- | src/python/m5/params.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/m5/params.py b/src/python/m5/params.py index 8bac9f0d6..c241b054d 100644 --- a/src/python/m5/params.py +++ b/src/python/m5/params.py @@ -2035,7 +2035,7 @@ __all__ = ['Param', 'VectorParam', 'TcpPort', 'UdpPort', 'EthernetAddr', 'IpAddress', 'IpNetmask', 'IpWithPort', 'MemorySize', 'MemorySize32', - 'Latency', 'Frequency', 'Clock', 'Voltage', + 'Latency', 'Frequency', 'Clock', 'Voltage', 'Current', 'NetworkBandwidth', 'MemoryBandwidth', 'AddrRange', 'MaxAddr', 'MaxTick', 'AllMemory', |