mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
hw/acpi/cpu: Use CPUState typedef
QEMU coding style recommend using structure typedefs: https://www.qemu.org/docs/master/devel/style.html#typedefs Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Message-Id: <20240126220407.95022-2-philmd@linaro.org>
This commit is contained in:
parent
1017e88701
commit
b8492bd430
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
||||||
#include "hw/hotplug.h"
|
#include "hw/hotplug.h"
|
||||||
|
|
||||||
typedef struct AcpiCpuStatus {
|
typedef struct AcpiCpuStatus {
|
||||||
struct CPUState *cpu;
|
CPUState *cpu;
|
||||||
uint64_t arch_id;
|
uint64_t arch_id;
|
||||||
bool is_inserting;
|
bool is_inserting;
|
||||||
bool is_removing;
|
bool is_removing;
|
||||||
|
|
Loading…
Reference in a new issue