mm/nobootmem.c: Drop __init annotation from free_bootmem_late

free_bootmem_late may be used past init. Drop the annotation.

Change-Id: I1c32710aee1565285b4c2cf7bfecb13d3c6a3745
Signed-off-by: Laura Abbott <lauraa@codeaurora.org>
This commit is contained in:
Laura Abbott 2014-04-21 15:28:38 -07:00
parent 6791a1be92
commit c87a311516

View file

@ -65,7 +65,7 @@ static void * __init __alloc_memory_core_early(int nid, u64 size, u64 align,
* down, but we are still initializing the system. Pages are given directly
* to the page allocator, no bootmem metadata is updated because it is gone.
*/
void __init free_bootmem_late(unsigned long addr, unsigned long size)
void free_bootmem_late(unsigned long addr, unsigned long size)
{
unsigned long cursor, end;