From: Philippe Mathieu-Daudé Date: Fri, 28 Feb 2020 11:46:32 +0000 (+0100) Subject: vl: Add missing "hw/boards.h" include X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=fe48442fd6bb57614049ad08d2cf3fcf7a2e46bb;p=qmiga%2Fqemu.git vl: Add missing "hw/boards.h" include vl.c calls machine_usb() declared in "hw/boards.h". Include it. This fixes (when modifying unrelated headers): vl.c:1283:10: error: implicit declaration of function 'machine_usb' is invalid in C99 [-Werror,-Wimplicit-function-declaration] if (!machine_usb(current_machine)) { ^ vl.c:1283:10: error: this function declaration is not a prototype [-Werror,-Wstrict-prototypes] vl.c:1283:22: error: use of undeclared identifier 'current_machine' if (!machine_usb(current_machine)) { ^ Acked-by: John Snow Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Message-Id: <20200228114649.12818-2-philmd@redhat.com> Signed-off-by: Laurent Vivier --- diff --git a/softmmu/vl.c b/softmmu/vl.c index 5549f4b619..ff2685dff8 100644 --- a/softmmu/vl.c +++ b/softmmu/vl.c @@ -25,6 +25,7 @@ #include "qemu/osdep.h" #include "qemu-common.h" #include "qemu/units.h" +#include "hw/boards.h" #include "hw/qdev-properties.h" #include "qapi/error.h" #include "qemu-version.h"