From: Laurent Vivier Date: Thu, 21 Dec 2017 21:11:03 +0000 (+0100) Subject: hw/i386/vmport: fix missing definitions with non-log trace backends X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=43ab9a5376c95c61ae898a222c4d04bdf60e239b;p=qemu.git hw/i386/vmport: fix missing definitions with non-log trace backends When compiled with anything other than the 'log' trace backend, we have: error: implicit declaration of function 'qemu_log_mask' error: 'LOG_UNIMP' undeclared (first use in this function) This patch adds the missing include. Fixes: 7299e1a411 ("hw/i386/vmport: replace fprintf() by trace events or LOG_UNIMP") Signed-off-by: Laurent Vivier Message-id: 20171221211103.30311-1-laurent@vivier.eu [PMM: fixed commit message description of when problem occurs] Signed-off-by: Peter Maydell --- diff --git a/hw/i386/vmport.c b/hw/i386/vmport.c index 9b8c68806e..116aa09819 100644 --- a/hw/i386/vmport.c +++ b/hw/i386/vmport.c @@ -27,6 +27,7 @@ #include "hw/i386/pc.h" #include "sysemu/hw_accel.h" #include "hw/qdev.h" +#include "qemu/log.h" #include "trace.h" #define VMPORT_CMD_GETVERSION 0x0a