mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-10-31 18:09:19 +00:00
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:
parent
6791a1be92
commit
c87a311516
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue