diff options
author | Tom Rini <trini@konsulko.com> | 2023-10-05 13:26:44 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-10-05 13:26:44 -0400 |
commit | be2abe73df58a35da9e8d5afb13fccdf1b0faa8e (patch) | |
tree | a41b676d6169cd846d33dcf18c8e8c6ea181784c /arch/riscv/lib/bootm.c | |
parent | cb59d23584a7a0f2431025a56f4938d424c49ca5 (diff) | |
parent | 7cfdacbe8020292845bd5eba63b576b8586c433c (diff) |
Merge https://source.denx.de/u-boot/custodians/u-boot-riscv
+ ae350: modify memory layout and target name
+ ae350: use generic RISC-V timer driver in S-mode
+ Support bootstage report for RISC-V
+ Support C extension exception command for RISC-V
+ Add Starfive timer support
Diffstat (limited to 'arch/riscv/lib/bootm.c')
-rw-r--r-- | arch/riscv/lib/bootm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/lib/bootm.c b/arch/riscv/lib/bootm.c index 276677a5e2..cc30efc904 100644 --- a/arch/riscv/lib/bootm.c +++ b/arch/riscv/lib/bootm.c @@ -42,7 +42,7 @@ static void announce_and_cleanup(int fake) #ifdef CONFIG_BOOTSTAGE_FDT bootstage_fdt_add_report(); #endif -#ifdef CONFIG_BOOTSTAGE_REPORT +#if CONFIG_IS_ENABLED(BOOTSTAGE_REPORT) bootstage_report(); #endif |