From: Frediano Ziglio Date: Wed, 30 Oct 2024 14:13:41 +0000 (+0000) Subject: x86/setup: Make setup.h header self contained X-Git-Tag: 4.20.0-rc1~260 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=aa4ad424f066f3ccb4de4e40092b0cd821840268;p=xen.git x86/setup: Make setup.h header self contained The header uses rangeset structure pointer. Forward declare the structure. Signed-off-by: Frediano Ziglio Acked-by: Andrew Cooper --- diff --git a/xen/arch/x86/include/asm/setup.h b/xen/arch/x86/include/asm/setup.h index 4874ee8936..d7ed4f4002 100644 --- a/xen/arch/x86/include/asm/setup.h +++ b/xen/arch/x86/include/asm/setup.h @@ -43,6 +43,7 @@ void *bootstrap_map_bm(const struct boot_module *bm); void *bootstrap_map(const module_t *mod); void bootstrap_unmap(void); +struct rangeset; int remove_xen_ranges(struct rangeset *r); int cf_check stub_selftest(void);