platform: sifive/fu540: Remove "stdout-path" fix-up

As of today the upstream U-Boot & Linux kernel ships a device tree
that already has "stdout-path" properly set in the "/chosen" node.
This is the same with the QEMU 'sifive_u' machine. Hence the codes
to fix up the "stdout-path" in OpenSBI is not necessary.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
This commit is contained in:
Bin Meng 2020-03-17 07:59:47 -07:00 committed by Anup Patel
parent 6f9bb83c1f
commit 1071f05663
1 changed files with 1 additions and 5 deletions

View File

@ -59,7 +59,7 @@
static void fu540_modify_dt(void *fdt)
{
u32 i, size;
int chosen_offset, err;
int err;
int cpu_offset;
char cpu_node[32] = "";
const char *mmu_type;
@ -84,10 +84,6 @@ static void fu540_modify_dt(void *fdt)
memset(cpu_node, 0, sizeof(cpu_node));
}
chosen_offset = fdt_path_offset(fdt, "/chosen");
fdt_setprop_string(fdt, chosen_offset, "stdout-path",
"/soc/serial@10010000:115200");
fdt_plic_fixup(fdt, "riscv,plic0");
fdt_reserved_memory_fixup(fdt);