diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2022-02-08 20:08:56 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2022-02-21 13:30:20 +0000 |
commit | 15e09912b74c01bf8a8eebb4e61f4d0dbfe74513 (patch) | |
tree | e0ba25f81f6badae686aa0a7ca510a056c0361f7 /target/s390x | |
parent | ad768e6f2a3397ec88ae874ad743df5d7c8c1936 (diff) | |
download | qemu-15e09912b74c01bf8a8eebb4e61f4d0dbfe74513.zip qemu-15e09912b74c01bf8a8eebb4e61f4d0dbfe74513.tar.gz qemu-15e09912b74c01bf8a8eebb4e61f4d0dbfe74513.tar.bz2 |
include: Move hardware version declarations to new qemu/hw-version.h
The "hardware version" machinery (qemu_set_hw_version(),
qemu_hw_version(), and the QEMU_HW_VERSION define) is used by fewer
than 10 files. Move it out from osdep.h into a new
qemu/hw-version.h.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-id: 20220208200856.3558249-6-peter.maydell@linaro.org
Diffstat (limited to 'target/s390x')
-rw-r--r-- | target/s390x/cpu_models.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/s390x/cpu_models.c b/target/s390x/cpu_models.c index 11e06cc..17ae771 100644 --- a/target/s390x/cpu_models.c +++ b/target/s390x/cpu_models.c @@ -19,6 +19,7 @@ #include "qapi/error.h" #include "qapi/visitor.h" #include "qemu/module.h" +#include "qemu/hw-version.h" #include "qemu/qemu-print.h" #ifndef CONFIG_USER_ONLY #include "sysemu/sysemu.h" |