diff options
| author | Bin Meng <[email protected]> | 2019-07-04 19:30:50 -0700 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2019-07-22 11:14:05 +0530 |
| commit | e7456399e439cf8c2f8c44264c0988218b2b6ac5 (patch) | |
| tree | 562fa5ba731a9e4f5ca0b8777ac3007b7e7884f2 | |
| parent | ce228ee0919deb9957192d723eecc8aaae2697c6 (diff) | |
platform: sifive: fu540: Use standard value string for cpu node status
Per device tree spec, the standard value string for the "status"
property of a cpu node is either "okay" or "disabled". "masked"
was once used but it is unfortunately a spec violation.
Signed-off-by: Bin Meng <[email protected]>
Acked-by: Anup Patel <[email protected]>
| -rw-r--r-- | platform/sifive/fu540/platform.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/sifive/fu540/platform.c b/platform/sifive/fu540/platform.c index 46b48b8b..ee907903 100644 --- a/platform/sifive/fu540/platform.c +++ b/platform/sifive/fu540/platform.c @@ -70,7 +70,8 @@ static void fu540_modify_dt(void *fdt) !strcmp(mmu_type, "riscv,sv48"))) continue; else - fdt_setprop_string(fdt, cpu_offset, "status", "masked"); + fdt_setprop_string(fdt, cpu_offset, "status", + "disabled"); memset(cpu_node, 0, sizeof(cpu_node)); } size = fdt_totalsize(fdt); |
