Fix infinite loop in ns_gige stat machine

argh!

dev/ns_gige.cc:
    Exit the state machine so that we don't come right back where
    we started and enter an infinite loop.

--HG--
extra : convert_revision : a5f2b5b5a692de6c80e4b02d7f9bc5d27fe17252
This commit is contained in:
Nathan Binkert 2004-07-14 09:02:15 -04:00
parent 961805c73a
commit 6f43d2b8d8

View file

@ -1929,7 +1929,7 @@ NSGigE::txKick()
txState = txFifoBlock;
transmit();
break;
goto exit;
}
}