diff options
author | David Howells <dhowells@redhat.com> | 2007-11-06 21:54:44 +0000 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-11-09 15:02:25 -0800 |
commit | e4fc5a1a2acab67867c9858cd4c8e9abb5b242f7 (patch) | |
tree | bc58dc37bce3057da44ade65a207f068e674973d /arch/frv | |
parent | dbeeb816e805091e7cfc03baf36dc40b4adb2bbd (diff) | |
download | linux-3.10-e4fc5a1a2acab67867c9858cd4c8e9abb5b242f7.tar.gz linux-3.10-e4fc5a1a2acab67867c9858cd4c8e9abb5b242f7.tar.bz2 linux-3.10-e4fc5a1a2acab67867c9858cd4c8e9abb5b242f7.zip |
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>
Diffstat (limited to 'arch/frv')
-rw-r--r-- | arch/frv/mm/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/frv/mm/init.c b/arch/frv/mm/init.c index 4103c2c487f..b841ecfd5d5 100644 --- a/arch/frv/mm/init.c +++ b/arch/frv/mm/init.c @@ -197,7 +197,7 @@ void __init mem_init(void) /* * 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) unsigned long start, end, addr; |