diff options
author | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2012-07-24 16:35:15 +0100 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2012-08-01 13:32:10 +0100 |
commit | b20c6b9e47772b9162ed194e7b2884afa6a354ab (patch) | |
tree | 7827d1ba84853dec69db02efa5500b19c7764c70 /hw/eepro100.c | |
parent | 35277d14ece1a68dc45cbc8c5af8f469c5c49549 (diff) | |
download | qemu-b20c6b9e47772b9162ed194e7b2884afa6a354ab.tar.gz qemu-b20c6b9e47772b9162ed194e7b2884afa6a354ab.tar.bz2 qemu-b20c6b9e47772b9162ed194e7b2884afa6a354ab.zip |
net: Rename qemu_del_vlan_client() to qemu_del_net_client()
Another step in moving the vlan feature out of net core. Users only
deal with NetClientState and therefore qemu_del_vlan_client() should be
named qemu_del_net_client().
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Zhi Yong Wu <wuzhy@linux.vnet.ibm.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Diffstat (limited to 'hw/eepro100.c')
-rw-r--r-- | hw/eepro100.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/eepro100.c b/hw/eepro100.c index c2b0a2dc9c..50d117e35e 100644 --- a/hw/eepro100.c +++ b/hw/eepro100.c @@ -1847,7 +1847,7 @@ static void pci_nic_uninit(PCIDevice *pci_dev) memory_region_destroy(&s->flash_bar); vmstate_unregister(&pci_dev->qdev, s->vmstate, s); eeprom93xx_free(&pci_dev->qdev, s->eeprom); - qemu_del_vlan_client(&s->nic->nc); + qemu_del_net_client(&s->nic->nc); } static NetClientInfo net_eepro100_info = { |