diff options
author | Christoph Hellwig <hch@lst.de> | 2019-05-13 20:18:34 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-05-14 12:47:47 -0400 |
commit | 4afd58e14dd415e456fd236755373f52e6055ec7 (patch) | |
tree | 798ce99c030b43504edfec2a704d72d0e852d8a2 /arch/m68k | |
parent | d8ae8a3765bfa1f9bf977e2496fcc9cf64fbfabd (diff) |
initramfs: provide a generic free_initrd_mem implementation
For most architectures free_initrd_mem just expands to the same
free_reserved_area call. Provide that as a generic implementation marked
__weak.
Link: http://lkml.kernel.org/r/20190213174621.29297-8-hch@lst.de
Signed-off-by: Christoph Hellwig <hch@lst.de>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> [m68k]
Acked-by: Mike Rapoport <rppt@linux.ibm.com>
Cc: Catalin Marinas <catalin.marinas@arm.com> [arm64]
Cc: Steven Price <steven.price@arm.com>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Cc: Guan Xuetao <gxt@pku.edu.cn>
Cc: Russell King <linux@armlinux.org.uk>
Cc: Will Deacon <will.deacon@arm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/mm/init.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/arch/m68k/mm/init.c b/arch/m68k/mm/init.c index 8868a4c9adae..778cacb7d57b 100644 --- a/arch/m68k/mm/init.c +++ b/arch/m68k/mm/init.c | |||
@@ -147,10 +147,3 @@ void __init mem_init(void) | |||
147 | init_pointer_tables(); | 147 | init_pointer_tables(); |
148 | mem_init_print_info(NULL); | 148 | mem_init_print_info(NULL); |
149 | } | 149 | } |
150 | |||
151 | #ifdef CONFIG_BLK_DEV_INITRD | ||
152 | void free_initrd_mem(unsigned long start, unsigned long end) | ||
153 | { | ||
154 | free_reserved_area((void *)start, (void *)end, -1, "initrd"); | ||
155 | } | ||
156 | #endif | ||