]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
hw: add missing includes hidden by block/aio.h
authorPaolo Bonzini <pbonzini@redhat.com>
Wed, 3 Dec 2025 11:39:24 +0000 (12:39 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Sat, 27 Dec 2025 09:11:12 +0000 (10:11 +0100)
hw/qdev/core.h being included by core headers means that it was quite
easy to forget including it, or anything that hw/qdev/core.h included.
Add the missing inclusions.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
hw/virtio/iothread-vq-mapping.c
include/hw/char/serial.h

index 15909eb9332a57090f676a9b4348176f4bc1bb56..55ce62986c7a5445fc15d59c3ebee3d646b27dd3 100644 (file)
@@ -8,6 +8,7 @@
 
 #include "qemu/osdep.h"
 #include "system/iothread.h"
+#include "qemu/bitmap.h"
 #include "hw/virtio/iothread-vq-mapping.h"
 
 static bool
index b804e22588673589b441436e80e6e0dc72a50a48..ea82ffac47608c78e8e774ddc99357eb9184ff43 100644 (file)
@@ -26,6 +26,7 @@
 #ifndef HW_SERIAL_H
 #define HW_SERIAL_H
 
+#include "hw/core/qdev.h"
 #include "chardev/char-fe.h"
 #include "system/memory.h"
 #include "qemu/fifo8.h"