From: Zhao Liu Date: Mon, 27 Nov 2023 14:56:11 +0000 (+0800) Subject: hw/cpu/cluster: Cleanup unused included header in cluster.c X-Git-Tag: v9.0.0-rc0~123^2~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a8a9f698ac7883cbce991d7e02db0981d152378e;p=thirdparty%2Fqemu.git hw/cpu/cluster: Cleanup unused included header in cluster.c Remove unused header (qemu/module.h and qemu/cutils.h) in cluster.c, and reorder the remaining header files (except qemu/osdep.h) in alphabetical order. Tested by "./configure" and then "make". Signed-off-by: Zhao Liu Reviewed-by: Philippe Mathieu-Daudé Message-ID: <20231127145611.925817-3-zhao1.liu@linux.intel.com> --- diff --git a/hw/cpu/cluster.c b/hw/cpu/cluster.c index e444b7c29d1..61289a840d4 100644 --- a/hw/cpu/cluster.c +++ b/hw/cpu/cluster.c @@ -19,12 +19,11 @@ */ #include "qemu/osdep.h" + +#include "hw/core/cpu.h" #include "hw/cpu/cluster.h" #include "hw/qdev-properties.h" -#include "hw/core/cpu.h" #include "qapi/error.h" -#include "qemu/module.h" -#include "qemu/cutils.h" static Property cpu_cluster_properties[] = { DEFINE_PROP_UINT32("cluster-id", CPUClusterState, cluster_id, 0),