diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-03-12 12:49:38 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-04-23 14:08:21 -0700 |
| commit | 91a853837da22e35d140471058e5d73dbfa87707 (patch) | |
| tree | ff9f3ed012f3e4c7e09763b89fc8dff69ce190a8 /hw | |
| parent | dfc56946a70052136126f6a207f237af8032d74a (diff) | |
| download | focaccia-qemu-91a853837da22e35d140471058e5d73dbfa87707.tar.gz focaccia-qemu-91a853837da22e35d140471058e5d73dbfa87707.zip | |
include/system: Move exec/ioport.h to system/ioport.h
Convert the existing includes with sed. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw')
| -rw-r--r-- | hw/block/fdc-isa.c | 2 | ||||
| -rw-r--r-- | hw/display/vga_int.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/hw/block/fdc-isa.c b/hw/block/fdc-isa.c index a10c24aab1..561cfa47c1 100644 --- a/hw/block/fdc-isa.c +++ b/hw/block/fdc-isa.c @@ -42,7 +42,7 @@ #include "system/block-backend.h" #include "system/blockdev.h" #include "system/system.h" -#include "exec/ioport.h" +#include "system/ioport.h" #include "qemu/log.h" #include "qemu/main-loop.h" #include "qemu/module.h" diff --git a/hw/display/vga_int.h b/hw/display/vga_int.h index 60ad26e03e..747b5cc6cf 100644 --- a/hw/display/vga_int.h +++ b/hw/display/vga_int.h @@ -26,7 +26,7 @@ #define HW_VGA_INT_H #include "ui/console.h" -#include "exec/ioport.h" +#include "system/ioport.h" #include "system/memory.h" #include "hw/display/bochs-vbe.h" |