From 4e40e89325dc9d70f2f58217d1dea8dd1e9f3ee4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Wed, 23 Mar 2022 19:57:38 +0400 Subject: [PATCH] include: move page_size_init() to include/hw/core/cpu.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marc-André Lureau Message-Id: <20220323155743.1585078-28-marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini --- include/hw/core/cpu.h | 2 ++ include/qemu-common.h | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/hw/core/cpu.h b/include/hw/core/cpu.h index 13adb251b2..466bed6047 100644 --- a/include/hw/core/cpu.h +++ b/include/hw/core/cpu.h @@ -1035,6 +1035,8 @@ void cpu_exec_unrealizefn(CPUState *cpu); */ bool target_words_bigendian(void); +void page_size_init(void); + #ifdef NEED_CPU_H #ifdef CONFIG_SOFTMMU diff --git a/include/qemu-common.h b/include/qemu-common.h index a271cac66a..65483f70d4 100644 --- a/include/qemu-common.h +++ b/include/qemu-common.h @@ -24,6 +24,4 @@ int qemu_main(int argc, char **argv, char **envp); #endif -void page_size_init(void); - #endif