Commit 984f0e7f69 for qemu.org
commit 984f0e7f69b8e4aef153d622ed0e4310d338b7a7
Author: Philippe Mathieu-Daudé <philmd@linaro.org>
Date: Tue Dec 17 15:56:10 2024 +0100
system/accel-ops: Remove unnecessary 'exec/cpu-common.h' header
Since commit c4b3f46c151 ("include/exec: Move vaddr defines to
separate file") we only need to include "exec/vaddr.h" to get
the 'vaddr' type definition, no need for "exec/cpu-common.h".
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: <20241217151305.29196-4-philmd@linaro.org>
diff --git a/include/system/accel-ops.h b/include/system/accel-ops.h
index a088672230..137fb96d44 100644
--- a/include/system/accel-ops.h
+++ b/include/system/accel-ops.h
@@ -10,7 +10,7 @@
#ifndef ACCEL_OPS_H
#define ACCEL_OPS_H
-#include "exec/cpu-common.h"
+#include "exec/vaddr.h"
#include "qom/object.h"
#define ACCEL_OPS_SUFFIX "-ops"