summaryrefslogtreecommitdiff
path: root/mm
diff options
context:
space:
mode:
authorRashika Kheria <rashika.kheria@gmail.com>2014-02-14 10:51:55 +1100
committerStephen Rothwell <sfr@canb.auug.org.au>2014-02-14 10:51:55 +1100
commit3e688b5ce3b9e9ed384762737fcdb7f6471486e4 (patch)
treeab1644667499cbf91a896fa02818bcfd67f42a40 /mm
parentf77a1969b41ffc1cd242a96b2186d813abfad5b1 (diff)
mm/nobootmem.c: mark function as static
Mark function as static in nobootmem.c because it is not used outside this file. This eliminates the following warning in mm/nobootmem.c: mm/nobootmem.c:324:15: warning: no previous prototype for `___alloc_bootmem_node' [-Wmissing-prototypes] Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Acked-by: David Rientjes <rientjes@google.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/nobootmem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/nobootmem.c b/mm/nobootmem.c
index f73f2987a852..04a9d94333a5 100644
--- a/mm/nobootmem.c
+++ b/mm/nobootmem.c
@@ -334,7 +334,7 @@ void * __init __alloc_bootmem_node_nopanic(pg_data_t *pgdat, unsigned long size,
return ___alloc_bootmem_node_nopanic(pgdat, size, align, goal, 0);
}
-void * __init ___alloc_bootmem_node(pg_data_t *pgdat, unsigned long size,
+static void * __init ___alloc_bootmem_node(pg_data_t *pgdat, unsigned long size,
unsigned long align, unsigned long goal,
unsigned long limit)
{