summaryrefslogtreecommitdiff
path: root/hw/ne2000.c
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-03-31 18:58:38 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2004-03-31 18:58:38 +0000
commitb0a21b5334fb31042d555bfb66de864291c53140 (patch)
treed9a0fd630071798b7a87b32c03a1e61fe87e2a9d /hw/ne2000.c
parentdff38e7b40b398dd713643d57d89f280c6d09ff1 (diff)
downloadqemu-b0a21b5334fb31042d555bfb66de864291c53140.tar.gz
use new timer API
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@689 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/ne2000.c')
-rw-r--r--hw/ne2000.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ne2000.c b/hw/ne2000.c
index 3bb55171a9..bf76829ed1 100644
--- a/hw/ne2000.c
+++ b/hw/ne2000.c
@@ -471,5 +471,5 @@ void ne2000_init(int base, int irq, NetDriverState *nd)
ne2000_reset(s);
- add_fd_read_handler(nd->fd, ne2000_can_receive, ne2000_receive, s);
+ qemu_add_fd_read_handler(nd->fd, ne2000_can_receive, ne2000_receive, s);
}