Commit 35bd16a2 authored by Alexander Kuleshov's avatar Alexander Kuleshov Committed by Linus Torvalds

mm/memblock: make memblock_remove_range() static

memblock_remove_range() is only used in the mm/memblock.c, so we can make
it static.
Signed-off-by: default avatarAlexander Kuleshov <kuleshovmail@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f19cb115
...@@ -89,10 +89,6 @@ int memblock_add_range(struct memblock_type *type, ...@@ -89,10 +89,6 @@ int memblock_add_range(struct memblock_type *type,
phys_addr_t base, phys_addr_t size, phys_addr_t base, phys_addr_t size,
int nid, unsigned long flags); int nid, unsigned long flags);
int memblock_remove_range(struct memblock_type *type,
phys_addr_t base,
phys_addr_t size);
void __next_mem_range(u64 *idx, int nid, ulong flags, void __next_mem_range(u64 *idx, int nid, ulong flags,
struct memblock_type *type_a, struct memblock_type *type_a,
struct memblock_type *type_b, phys_addr_t *out_start, struct memblock_type *type_b, phys_addr_t *out_start,
......
...@@ -706,7 +706,7 @@ static int __init_memblock memblock_isolate_range(struct memblock_type *type, ...@@ -706,7 +706,7 @@ static int __init_memblock memblock_isolate_range(struct memblock_type *type,
return 0; return 0;
} }
int __init_memblock memblock_remove_range(struct memblock_type *type, static int __init_memblock memblock_remove_range(struct memblock_type *type,
phys_addr_t base, phys_addr_t size) phys_addr_t base, phys_addr_t size)
{ {
int start_rgn, end_rgn; int start_rgn, end_rgn;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment