diff options
author | Tom Rini <trini@konsulko.com> | 2020-08-14 08:38:01 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-08-14 08:38:01 -0400 |
commit | fe5c777df26dab302cbb26d5f05655e27b714987 (patch) | |
tree | b1e7f289c00fe53b02ee5f11894e4d47a7697f83 /arch/riscv/lib/andes_plic.c | |
parent | cdcf591d9b20534e5f5c58aa2a2b07b3b173f5a1 (diff) | |
parent | 313981c2d9437f31b2a0f3838591a5fb0e5d8ebe (diff) |
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-riscv
- Fix HiFive Unleashed the broken problem by call fix_fdt() before
reserve_fdt(). Please refer to
https://www.mail-archive.com/u-boot@lists.denx.de/msg379444.html for
master u-boot broken for HiFive Unleashed.
- Add unaligned exception cmd.
- Refine sifive/fu540 spl flow.
- Add additional crash information for efi.
- Update sipeed/maix doc.
- Two minor refine.
Diffstat (limited to 'arch/riscv/lib/andes_plic.c')
-rw-r--r-- | arch/riscv/lib/andes_plic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/lib/andes_plic.c b/arch/riscv/lib/andes_plic.c index 5cf29df670c..c2a8fe4d9e9 100644 --- a/arch/riscv/lib/andes_plic.c +++ b/arch/riscv/lib/andes_plic.c @@ -52,7 +52,7 @@ static int init_plic(void) if (ret) return ret; - if (ret == 0 && dev) { + if (dev) { ofnode_for_each_subnode(node, dev_ofnode(dev->parent)) { const char *device_type; |