From: Richard Henderson Date: Thu, 5 Feb 2026 03:02:40 +0000 (+1000) Subject: include/hw/or1k: Rename from openrisc X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8cbc31d341cb4cc1bc3ac0e22522c163161e0c92;p=thirdparty%2Fqemu.git include/hw/or1k: Rename from openrisc Signed-off-by: Richard Henderson Reviewed-by: Pierrick Bouvier Reviewed-by: Philippe Mathieu-Daudé Acked-by: Stafford Horne Message-ID: <20260205030244.266447-3-richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé --- diff --git a/MAINTAINERS b/MAINTAINERS index 08bcd8892a..ea52060bfe 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -305,7 +305,7 @@ S: Odd Fixes F: docs/system/openrisc/cpu-features.rst F: target/or1k/ F: hw/openrisc/ -F: include/hw/openrisc/ +F: include/hw/or1k/ F: tests/functional/or1k/meson.build F: tests/tcg/openrisc/ diff --git a/hw/openrisc/boot.c b/hw/openrisc/boot.c index 6256babc42..c18f4a6a9f 100644 --- a/hw/openrisc/boot.c +++ b/hw/openrisc/boot.c @@ -12,7 +12,7 @@ #include "exec/target_page.h" #include "elf.h" #include "hw/core/loader.h" -#include "hw/openrisc/boot.h" +#include "hw/or1k/boot.h" #include "system/device_tree.h" #include "system/qtest.h" #include "system/reset.h" diff --git a/hw/openrisc/openrisc_sim.c b/hw/openrisc/openrisc_sim.c index 603d8ca0d9..f1b1f63274 100644 --- a/hw/openrisc/openrisc_sim.c +++ b/hw/openrisc/openrisc_sim.c @@ -26,7 +26,7 @@ #include "hw/core/boards.h" #include "hw/char/serial-mm.h" #include "net/net.h" -#include "hw/openrisc/boot.h" +#include "hw/or1k/boot.h" #include "hw/core/qdev-properties.h" #include "system/address-spaces.h" #include "system/device_tree.h" diff --git a/hw/openrisc/virt.c b/hw/openrisc/virt.c index 54ce96666e..39f54058ab 100644 --- a/hw/openrisc/virt.c +++ b/hw/openrisc/virt.c @@ -16,7 +16,7 @@ #include "hw/core/boards.h" #include "hw/char/serial-mm.h" #include "hw/core/split-irq.h" -#include "hw/openrisc/boot.h" +#include "hw/or1k/boot.h" #include "hw/misc/sifive_test.h" #include "hw/pci/pci.h" #include "hw/pci-host/gpex.h" diff --git a/include/hw/openrisc/boot.h b/include/hw/or1k/boot.h similarity index 93% rename from include/hw/openrisc/boot.h rename to include/hw/or1k/boot.h index 3c481bdea6..2e6131580c 100644 --- a/include/hw/openrisc/boot.h +++ b/include/hw/or1k/boot.h @@ -16,8 +16,8 @@ * this program. If not, see . */ -#ifndef OPENRISC_BOOT_H -#define OPENRISC_BOOT_H +#ifndef OR1K_BOOT_H +#define OR1K_BOOT_H #include "exec/cpu-defs.h" #include "hw/core/boards.h" @@ -32,4 +32,4 @@ hwaddr openrisc_load_initrd(void *fdt, const char *filename, uint32_t openrisc_load_fdt(MachineState *ms, void *fdt, hwaddr load_start, uint64_t mem_size); -#endif /* OPENRISC_BOOT_H */ +#endif /* OR1K_BOOT_H */