Browse Source
Need to stub cpu64 finalize functions. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Message-id: 20250512180502.2395029-10-pierrick.bouvier@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>pull/291/head
committed by
Peter Maydell
3 changed files with 33 additions and 6 deletions
@ -0,0 +1,26 @@ |
|||
/* SPDX-License-Identifier: GPL-2.0-or-later */ |
|||
|
|||
#include "qemu/osdep.h" |
|||
#include "target/arm/cpu.h" |
|||
#include "target/arm/internals.h" |
|||
#include <glib.h> |
|||
|
|||
void arm_cpu_sme_finalize(ARMCPU *cpu, Error **errp) |
|||
{ |
|||
g_assert_not_reached(); |
|||
} |
|||
|
|||
void arm_cpu_sve_finalize(ARMCPU *cpu, Error **errp) |
|||
{ |
|||
g_assert_not_reached(); |
|||
} |
|||
|
|||
void arm_cpu_pauth_finalize(ARMCPU *cpu, Error **errp) |
|||
{ |
|||
g_assert_not_reached(); |
|||
} |
|||
|
|||
void arm_cpu_lpa2_finalize(ARMCPU *cpu, Error **errp) |
|||
{ |
|||
g_assert_not_reached(); |
|||
} |
|||
Loading…
Reference in new issue