diff options
author | Mark McLoughlin <markmc@redhat.com> | 2009-05-18 12:55:27 +0100 |
---|---|---|
committer | Mark McLoughlin <markmc@redhat.com> | 2009-06-09 11:38:49 +0100 |
commit | 463af5349a787160642f023dad10eaf0cb419fb7 (patch) | |
tree | 5e8bb3409816c956e473c9c81ab666038094a45e /hw/pcnet.c | |
parent | 3471b757d0ca63a0e8188c4c96acd1c279a8c737 (diff) |
net: add fd_readv() handler to qemu_new_vlan_client() args
This, apparently, is the style we prefer - all VLANClientState
should be an argument to qemu_new_vlan_client().
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Diffstat (limited to 'hw/pcnet.c')
-rw-r--r-- | hw/pcnet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/pcnet.c b/hw/pcnet.c index c44ba7edf4..5eba467253 100644 --- a/hw/pcnet.c +++ b/hw/pcnet.c @@ -1952,7 +1952,7 @@ static void pcnet_common_init(DeviceState *dev, PCNetState *s, qdev_get_macaddr(dev, s->macaddr); s->vc = qdev_get_vlan_client(dev, - pcnet_receive, pcnet_can_receive, + pcnet_can_receive, pcnet_receive, NULL, cleanup, s); pcnet_h_reset(s); register_savevm("pcnet", -1, 2, pcnet_save, pcnet_load, s); |