summary refs log tree commit diff stats
path: root/hw/net
diff options
context:
space:
mode:
authorMiao Yan <yanmiaobest@gmail.com>2015-12-07 21:28:30 -0800
committerJason Wang <jasowang@redhat.com>2016-01-11 11:01:32 +0800
commit938cdfefeeebbf763dc04857b8aa9e659989f671 (patch)
tree0ca280804eb5507f0876c8372ba64dc21b1b9ab4 /hw/net
parent6bb9ead762bf749af11ea225fc2a74db1b93c105 (diff)
downloadfocaccia-qemu-938cdfefeeebbf763dc04857b8aa9e659989f671.tar.gz
focaccia-qemu-938cdfefeeebbf763dc04857b8aa9e659989f671.zip
net/vmxnet3: fix a build error when enabling debug output
Macro MAC_FMT and MAC_ARG are not defined, but used in vmxnet3_net_init().
This will cause build error when debug level is raised in
vmxnet3_debug.h (enable all VMXNET3_DEBUG_xxx).

Use VMXNET_MF and VXMNET_MA instead.

Signed-off-by: Miao Yan <yanmiaobest@gmail.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Dmitry Fleytman <dmitry@daynix.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'hw/net')
-rw-r--r--hw/net/vmxnet3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/net/vmxnet3.c b/hw/net/vmxnet3.c
index 37373e5d3d..b41a35cab7 100644
--- a/hw/net/vmxnet3.c
+++ b/hw/net/vmxnet3.c
@@ -2043,7 +2043,7 @@ static void vmxnet3_net_init(VMXNET3State *s)
 
     s->link_status_and_speed = VMXNET3_LINK_SPEED | VMXNET3_LINK_STATUS_UP;
 
-    VMW_CFPRN("Permanent MAC: " MAC_FMT, MAC_ARG(s->perm_mac.a));
+    VMW_CFPRN("Permanent MAC: " VMXNET_MF, VMXNET_MA(s->perm_mac.a));
 
     s->nic = qemu_new_nic(&net_vmxnet3_info, &s->conf,
                           object_get_typename(OBJECT(s)),