diff options
Diffstat (limited to 'python/m5/objects/Ethernet.py')
-rw-r--r-- | python/m5/objects/Ethernet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/m5/objects/Ethernet.py b/python/m5/objects/Ethernet.py index d3e8c2811..00ad479f1 100644 --- a/python/m5/objects/Ethernet.py +++ b/python/m5/objects/Ethernet.py @@ -83,7 +83,7 @@ class NSGigE(PciDevice): rx_fifo_size = Param.MemorySize('128kB', "max size in bytes of rxFifo") tx_fifo_size = Param.MemorySize('128kB', "max size in bytes of txFifo") - m5reg = Param.UInt32(0, "Register for m5 usage") + dedicated = Param.Bool(False, "dedicated kernel thread for driver") intr_delay = Param.Latency('0us', "Interrupt Delay in microseconds") payload_bus = Param.Bus(NULL, "The IO Bus to attach to for payload") |