diff options
author | Adrian Bunk <[email protected]> | 2008-07-23 21:28:12 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2008-07-24 10:47:21 -0700 |
commit | d92bc318547507a944a22e7ef936793dc0fe167f (patch) | |
tree | 6c1406734048b3ea710de744389c2db07db8983c | |
parent | b69a7288ea7bf171328f313f0edae629f50e3bdb (diff) |
mm: make register_page_bootmem_info_section() static
Make the needlessly global register_page_bootmem_info_section() static.
Signed-off-by: Adrian Bunk <[email protected]>
Acked-by: Yasunori Goto <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | mm/memory_hotplug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c index 6e26adc08f14..ec85c37dcfb9 100644 --- a/mm/memory_hotplug.c +++ b/mm/memory_hotplug.c @@ -86,7 +86,7 @@ void put_page_bootmem(struct page *page) } -void register_page_bootmem_info_section(unsigned long start_pfn) +static void register_page_bootmem_info_section(unsigned long start_pfn) { unsigned long *usemap, mapsize, section_nr, i; struct mem_section *ms; |