diff -ru qemu-3c509-antony-update/hw/3c509b.c qemu-3c509-antony-update-fix/hw/3c509b.c --- qemu-3c509-antony-update/hw/3c509b.c Wed Jan 19 18:40:17 2005 +++ qemu-3c509-antony-update-fix/hw/3c509b.c Wed Jan 19 19:14:25 2005 @@ -333,7 +333,7 @@ d->tx_status[d->tx_tail++] = 0x80 | (d->txbuffer[0] & 0x8000? 0x40 : 0); if (d->tx_tail >= TCM_STATUS_SIZE) d->tx_tail = 0; - if (TCM_STAT_ENABLE(d)) { + if (TCM_STAT_ENABLED(d)) { if (((d->tx_bytes < 0x8000) && (d->tx_bytes + size)) || (d->tx_frames == 0x80)) d->status |= 0x0080; diff -ru qemu-3c509-antony-update/vl.h qemu-3c509-antony-update-fix/vl.h --- qemu-3c509-antony-update/vl.h Wed Jan 19 18:40:19 2005 +++ qemu-3c509-antony-update-fix/vl.h Wed Jan 19 18:43:12 2005 @@ -680,7 +680,7 @@ /* 3c509b.c */ -extern int tcm509b_enable; +extern int tcm509b_enabled; void pnp_3c509b_init(int base, int irq, NetDriverState *nd);