X86: Make nop a regular, non-microcoded instruction.
[gem5.git] / src / dev / etherbus.hh
index 624ceb81a2f679689d3661f4a0278f2428bbd564..6408f7f1f18d885fec560a37f0622314a0da889a 100644 (file)
@@ -59,8 +59,7 @@ class EtherBus : public EtherObject
         EtherBus *bus;
 
       public:
-        DoneEvent(EventQueue *q, EtherBus *b)
-            : Event(q), bus(b) {}
+        DoneEvent(EtherBus *b) : bus(b) {}
         virtual void process() { bus->txDone(); }
         virtual const char *description() const
             { return "ethernet bus completion"; }