riscv: Do not overwrite initrd_start and initrd_end
authorGuenter Roeck <linux@roeck-us.net>
Wed, 29 Aug 2018 00:33:46 +0000 (17:33 -0700)
committerPalmer Dabbelt <palmer@sifive.com>
Wed, 5 Sep 2018 00:04:50 +0000 (17:04 -0700)
commite866d3e84eb7c9588afb77604d417e8cc49fe216
tree7d48b68919b8cb33b100ee2766d1112b3d1d3376
parent57361846b52bc686112da6ca5368d11210796804
riscv: Do not overwrite initrd_start and initrd_end

setup_initrd() overwrites initrd_start and initrd_end if __initramfs_size
is larger than 0, which is always true even if there is no embedded
initramfs. This prevents booting qemu with "-initrd" parameter.
Overwriting initrd_start and initrd_end is not necessary since
__initramfs_start and __initramfs_size are used directly in
populate_rootfs() to load the built-in initramfs, so just drop
that code.

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
arch/riscv/kernel/setup.c