diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2018-11-05 14:54:28 -0800 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2018-11-26 15:50:26 -0600 |
commit | fe7db7570379dafec67430bb843d2e78df89e7f1 (patch) | |
tree | b7337cb3188425cbafe46e2fabb7a507991dd08e /arch/arm/mm | |
parent | b1ab95c63622e9d9bd0ce685e149034d393afc2e (diff) | |
download | blackbird-op-linux-fe7db7570379dafec67430bb843d2e78df89e7f1.tar.gz blackbird-op-linux-fe7db7570379dafec67430bb843d2e78df89e7f1.zip |
of/fdt: Populate phys_initrd_start/phys_initrd_size from FDT
Now that we have central and global variables holding the physical
address and size of the initrd, we can have
early_init_dt_check_for_initrd() populate
phys_initrd_start/phys_initrd_size for us.
This allows us to remove a chunk of code from arch/arm/mm/init.c
introduced with commit 65939301acdb ("arm: set initrd_start/initrd_end
for fdt scan").
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/arm/mm')
-rw-r--r-- | arch/arm/mm/init.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/arm/mm/init.c b/arch/arm/mm/init.c index 438625764ccd..a3b6f1f1cbaf 100644 --- a/arch/arm/mm/init.c +++ b/arch/arm/mm/init.c @@ -235,12 +235,6 @@ static void __init arm_initrd_init(void) phys_addr_t start; unsigned long size; - /* FDT scan will populate initrd_start */ - if (initrd_start && !phys_initrd_size) { - phys_initrd_start = __virt_to_phys(initrd_start); - phys_initrd_size = initrd_end - initrd_start; - } - initrd_start = initrd_end = 0; if (!phys_initrd_size) |