From: Srikanth Boddepalli Date: Tue, 27 Nov 2018 14:23:27 +0000 (+0530) Subject: xen: xlate_mmu: add missing header to fix 'W=1' warning X-Git-Tag: v4.20-rc5~2^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=72791ac854fea36034fa7976b748fde585008e78;p=thirdparty%2Fkernel%2Flinux.git xen: xlate_mmu: add missing header to fix 'W=1' warning Add a missing header otherwise compiler warns about missed prototype: drivers/xen/xlate_mmu.c:183:5: warning: no previous prototype for 'xen_xlate_unmap_gfn_range?' [-Wmissing-prototypes] int xen_xlate_unmap_gfn_range(struct vm_area_struct *vma, ^~~~~~~~~~~~~~~~~~~~~~~~~ Signed-off-by: Srikanth Boddepalli Reviewed-by: Boris Ostrovsky Reviewed-by: Joey Pabalinas Signed-off-by: Juergen Gross --- diff --git a/drivers/xen/xlate_mmu.c b/drivers/xen/xlate_mmu.c index 23f1387b3ef79..e7df65d32c918 100644 --- a/drivers/xen/xlate_mmu.c +++ b/drivers/xen/xlate_mmu.c @@ -36,6 +36,7 @@ #include #include +#include #include #include #include