diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-10-13 11:35:04 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-11-07 13:08:48 +0100 |
commit | 9348028e7ed089a1e9ed45091668c4c199e76fcd (patch) | |
tree | 1e275471acdaa8852e8c53672967acb07f74ec61 /target/hppa/cpu-qom.h | |
parent | c61b18a5d0562851b933cd2fdc61cf21ea1be270 (diff) | |
download | qemu-9348028e7ed089a1e9ed45091668c4c199e76fcd.zip qemu-9348028e7ed089a1e9ed45091668c4c199e76fcd.tar.gz qemu-9348028e7ed089a1e9ed45091668c4c199e76fcd.tar.bz2 |
target: Move ArchCPUClass definition to 'cpu.h'
The OBJECT_DECLARE_CPU_TYPE() macro forward-declares each
ArchCPUClass type. These forward declarations are sufficient
for code in hw/ to use the QOM definitions. No need to expose
these structure definitions. Keep each local to their target/
by moving them to the corresponding "cpu.h" header.
Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20231013140116.255-13-philmd@linaro.org>
Diffstat (limited to 'target/hppa/cpu-qom.h')
-rw-r--r-- | target/hppa/cpu-qom.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/target/hppa/cpu-qom.h b/target/hppa/cpu-qom.h index b7d9cdf..5c454bf 100644 --- a/target/hppa/cpu-qom.h +++ b/target/hppa/cpu-qom.h @@ -21,26 +21,10 @@ #define QEMU_HPPA_CPU_QOM_H #include "hw/core/cpu.h" -#include "qom/object.h" #define TYPE_HPPA_CPU "hppa-cpu" #define TYPE_HPPA64_CPU "hppa64-cpu" OBJECT_DECLARE_CPU_TYPE(HPPACPU, HPPACPUClass, HPPA_CPU) -/** - * HPPACPUClass: - * @parent_realize: The parent class' realize handler. - * @parent_reset: The parent class' reset handler. - * - * An HPPA CPU model. - */ -struct HPPACPUClass { - CPUClass parent_class; - - DeviceRealize parent_realize; - DeviceReset parent_reset; -}; - - #endif |