Revert "Fix ne2000_can_receive() function".
[qemu] / hw / ne2000.c
index 6043fc3..44f30c2 100644 (file)
@@ -217,7 +217,7 @@ static int ne2000_can_receive(void *opaque)
     NE2000State *s = opaque;
 
     if (s->cmd & E8390_STOP)
-        return 0;
+        return 1;
     return !ne2000_buffer_full(s);
 }