From: Julien Grall Date: Tue, 25 Feb 2014 08:31:29 +0000 (+0100) Subject: xsm: Fix xsm_map_gfmn_foreign prototype when XSM is enabled X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~5549 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e7a797a8bf115e5b79f8fb5676379c3ac5c30255;p=xen.git xsm: Fix xsm_map_gfmn_foreign prototype when XSM is enabled Signed-off-by: Julien Grall Acked-by: Daniel De Graaf --- diff --git a/xen/include/xsm/xsm.h b/xen/include/xsm/xsm.h index 193945323e..5d354552dd 100644 --- a/xen/include/xsm/xsm.h +++ b/xen/include/xsm/xsm.h @@ -621,7 +621,7 @@ static inline int xsm_ioport_mapping (xsm_default_t def, struct domain *d, uint3 #endif /* CONFIG_X86 */ #ifdef CONFIG_ARM -static inline int xsm_map_gmfn_foreign (struct domain *d, struct domain *t) +static inline int xsm_map_gmfn_foreign (xsm_default_t def, struct domain *d, struct domain *t) { return xsm_ops->map_gmfn_foreign(d, t); }