From: Doug Goldstein Date: Thu, 19 Jan 2017 09:35:45 +0000 (+0100) Subject: x86/mtrr: drop unused func prototypes and struct X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~2951 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a80f58f2e4217ed2f73a5d674b864771f79e17ff;p=xen.git x86/mtrr: drop unused func prototypes and struct These weren't used so drop them. Signed-off-by: Doug Goldstein Reviewed-by: Jan Beulich --- diff --git a/xen/arch/x86/cpu/mtrr/mtrr.h b/xen/arch/x86/cpu/mtrr/mtrr.h index ec168f9961..bb57defca3 100644 --- a/xen/arch/x86/cpu/mtrr/mtrr.h +++ b/xen/arch/x86/cpu/mtrr/mtrr.h @@ -31,18 +31,6 @@ extern int generic_validate_add_page(unsigned long base, unsigned long size, extern const struct mtrr_ops generic_mtrr_ops; -/* library functions for processor-specific routines */ -struct set_mtrr_context { - unsigned long flags; - unsigned long cr4val; - uint64_t deftype; - u32 ccr3; -}; - -void set_mtrr_done(struct set_mtrr_context *ctxt); -void set_mtrr_cache_disable(struct set_mtrr_context *ctxt); -void set_mtrr_prepare_save(struct set_mtrr_context *ctxt); - void get_mtrr_state(void); extern void set_mtrr_ops(const struct mtrr_ops *); @@ -56,6 +44,3 @@ extern const struct mtrr_ops *mtrr_if; extern unsigned int num_var_ranges; void mtrr_state_warn(void); - -extern int amd_init_mtrr(void); -extern int cyrix_init_mtrr(void);