summaryrefslogtreecommitdiff
path: root/hw/ne2000.h
diff options
context:
space:
mode:
authorStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2012-07-24 16:35:14 +0100
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2012-08-01 13:32:10 +0100
commit35277d14ece1a68dc45cbc8c5af8f469c5c49549 (patch)
treefeee32d73b80300bf2214f949bb47e9f9b72e58c /hw/ne2000.h
parent4e68f7a0819f179c2ff90a60611806c789911cc2 (diff)
downloadqemu-35277d14ece1a68dc45cbc8c5af8f469c5c49549.tar.gz
net: Rename vc local variables to nc
Now that VLANClientState has been renamed to NetClientState all 'vc' local variables should be 'nc'. Much of the code already used 'nc' but there are places where 'vc' needs to be renamed. 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/ne2000.h')
-rw-r--r--hw/ne2000.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/ne2000.h b/hw/ne2000.h
index 6c196a268c..1e7ab073e3 100644
--- a/hw/ne2000.h
+++ b/hw/ne2000.h
@@ -31,5 +31,5 @@ typedef struct NE2000State {
void ne2000_setup_io(NE2000State *s, unsigned size);
extern const VMStateDescription vmstate_ne2000;
void ne2000_reset(NE2000State *s);
-int ne2000_can_receive(NetClientState *vc);
-ssize_t ne2000_receive(NetClientState *vc, const uint8_t *buf, size_t size_);
+int ne2000_can_receive(NetClientState *nc);
+ssize_t ne2000_receive(NetClientState *nc, const uint8_t *buf, size_t size_);