FRV: Remove the section annotation on free_initmem()
Remove the section annotation on FRV's free_initmem(). It can't be marked __init, lest it free itself. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
dbeeb816e8
commit
e4fc5a1a2a
|
@ -197,7 +197,7 @@ void __init mem_init(void)
|
||||||
/*
|
/*
|
||||||
* free the memory that was only required for initialisation
|
* free the memory that was only required for initialisation
|
||||||
*/
|
*/
|
||||||
void __init free_initmem(void)
|
void free_initmem(void)
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_RAMKERNEL) && !defined(CONFIG_PROTECT_KERNEL)
|
#if defined(CONFIG_RAMKERNEL) && !defined(CONFIG_PROTECT_KERNEL)
|
||||||
unsigned long start, end, addr;
|
unsigned long start, end, addr;
|
||||||
|
|
Loading…
Reference in New Issue