From: Philippe Mathieu-Daudé Date: Tue, 17 Dec 2024 14:56:10 +0000 (+0100) Subject: system/accel-ops: Remove unnecessary 'exec/cpu-common.h' header X-Git-Tag: v10.0.0-rc0~109^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=984f0e7f69b8e4aef153d622ed0e4310d338b7a7;p=thirdparty%2Fqemu.git 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é Reviewed-by: Richard Henderson Reviewed-by: Zhao Liu Message-Id: <20241217151305.29196-4-philmd@linaro.org> --- diff --git a/include/system/accel-ops.h b/include/system/accel-ops.h index a0886722305..137fb96d444 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"