aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorBen Dooks (Codethink) <ben.dooks@codethink.co.uk>2019-10-22 13:52:51 +0100
committerJuergen Gross <jgross@suse.com>2019-11-07 12:03:33 +0100
commit88920ddebd2f4afe67eb39a9fe3661275e6e3e2d (patch)
treece7b6463fe36e133b65af4e42db6529e1f2488ec /arch/arm
parentxen: mm: include <xen/xen-ops.h> for missing declarations (diff)
downloadlinux-dev-88920ddebd2f4afe67eb39a9fe3661275e6e3e2d.tar.xz
linux-dev-88920ddebd2f4afe67eb39a9fe3661275e6e3e2d.zip
xen: mm: make xen_mm_init static
The xen_mm_init is not exported or used outside of the file it is declared in, so make it static. This fixes the following sparse warning: arch/arm/xen/mm.c:136:12: warning: symbol 'xen_mm_init' was not declared. Should it be static? Signed-off-by: Ben Dooks (Codethink) <ben.dooks@codethink.co.uk> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> Signed-off-by: Juergen Gross <jgross@suse.com>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/xen/mm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/xen/mm.c b/arch/arm/xen/mm.c
index 6feb6b78b13c..3c7645d7b9b4 100644
--- a/arch/arm/xen/mm.c
+++ b/arch/arm/xen/mm.c
@@ -134,7 +134,7 @@ void xen_destroy_contiguous_region(phys_addr_t pstart, unsigned int order)
return;
}
-int __init xen_mm_init(void)
+static int __init xen_mm_init(void)
{
struct gnttab_cache_flush cflush;
if (!xen_initial_domain())