diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2018-11-05 14:54:31 -0800 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2018-11-26 15:50:45 -0600 |
commit | 229c55ccb487c0c10721fdb92af874d7b8671cda (patch) | |
tree | 106a5cbaa9dcc187afb673f8baad4c9ac295cc65 /arch/unicore32/mm | |
parent | cdbc848b03414c75b7badccd8ada29deba7ec6e4 (diff) | |
download | linux-229c55ccb487c0c10721fdb92af874d7b8671cda.tar.gz linux-229c55ccb487c0c10721fdb92af874d7b8671cda.tar.bz2 linux-229c55ccb487c0c10721fdb92af874d7b8671cda.zip |
arch: Move initrd= parsing into do_mounts_initrd.c
ARC, ARM, ARM64 and Unicore32 are all capable of parsing the "initrd="
command line parameter to allow specifying the physical address and size
of an initrd. Move that parsing into init/do_mounts_initrd.c such that
we no longer duplicate that logic.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Mike Rapoport <rppt@linux.ibm.com>
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'arch/unicore32/mm')
-rw-r--r-- | arch/unicore32/mm/init.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/unicore32/mm/init.c b/arch/unicore32/mm/init.c index 02aa2c0b295e..85ef2c624090 100644 --- a/arch/unicore32/mm/init.c +++ b/arch/unicore32/mm/init.c @@ -30,24 +30,6 @@ #include "mm.h" -#ifdef CONFIG_BLK_DEV_INITRD -static int __init early_initrd(char *p) -{ - unsigned long start, size; - char *endp; - - start = memparse(p, &endp); - if (*endp == ',') { - size = memparse(endp + 1, NULL); - - phys_initrd_start = start; - phys_initrd_size = size; - } - return 0; -} -early_param("initrd", early_initrd); -#endif - /* * This keeps memory configuration data used by a couple memory * initialization functions, as well as show_mem() for the skipping |