From: Paolo Bonzini Date: Mon, 19 Jan 2026 12:04:02 +0000 (+0100) Subject: hw/virtio-nsm: include qemu/osdep.h X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b248ca4670d2804b21f8db61ce755bd8cbed4616;p=thirdparty%2Fqemu.git hw/virtio-nsm: include qemu/osdep.h The file hw/virtio/cbor-helpers.c does not include our standard qemu/osdep.h header, add it. Reported-by: Peter Maydell Signed-off-by: Paolo Bonzini Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Dorjoy Chowdhury Message-ID: <20260119120402.284985-1-pbonzini@redhat.com> Signed-off-by: Philippe Mathieu-Daudé --- diff --git a/hw/virtio/cbor-helpers.c b/hw/virtio/cbor-helpers.c index 49f55df399..010454d538 100644 --- a/hw/virtio/cbor-helpers.c +++ b/hw/virtio/cbor-helpers.c @@ -8,6 +8,7 @@ * top-level directory. */ +#include "qemu/osdep.h" #include "hw/virtio/cbor-helpers.h" bool qemu_cbor_map_add(cbor_item_t *map, cbor_item_t *key, cbor_item_t *value)