From: Stephen Rothwell Date: Thu, 27 Mar 2008 05:08:57 +0000 (+1100) Subject: [POWERPC] htab_remove_mapping is only used by MEMORY_HOTPLUG X-Git-Tag: v2.6.26-rc1~1125^2~68 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=ae86f0088de389baa448a42d040ab58d5c759bef;hp=c6d4d5a8a83e4a564bcf233fdd565183c33df5d1;p=linux-2.6-omap-h63xx.git [POWERPC] htab_remove_mapping is only used by MEMORY_HOTPLUG This eliminates a warning in builds that don't define CONFIG_MEMORY_HOTPLUG. Signed-off-by: Stephen Rothwell Signed-off-by: Paul Mackerras --- diff --git a/arch/powerpc/mm/hash_utils_64.c b/arch/powerpc/mm/hash_utils_64.c index 2f3dfcc7cdd..2b5a399f6fa 100644 --- a/arch/powerpc/mm/hash_utils_64.c +++ b/arch/powerpc/mm/hash_utils_64.c @@ -192,6 +192,7 @@ int htab_bolt_mapping(unsigned long vstart, unsigned long vend, return ret < 0 ? ret : 0; } +#ifdef CONFIG_MEMORY_HOTPLUG static int htab_remove_mapping(unsigned long vstart, unsigned long vend, int psize, int ssize) { @@ -212,6 +213,7 @@ static int htab_remove_mapping(unsigned long vstart, unsigned long vend, return 0; } +#endif /* CONFIG_MEMORY_HOTPLUG */ static int __init htab_dt_scan_seg_sizes(unsigned long node, const char *uname, int depth,