diff options
author | Anup Patel <anup.patel@wdc.com> | 2021-05-20 21:16:25 +0530 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2021-05-24 15:49:21 +0530 |
commit | 54d7def6c254058f9458a0e26205b3c93a48bb42 (patch) | |
tree | b925e5ae2ad99804a49d8170653ef21b9cd1dfc7 /lib/utils/irqchip | |
parent | b2dbbc0577e326b6dc1babaa53fb46605c996a72 (diff) |
lib: utils: Try other FDT drivers when we see SBI_ENODEV
We should try other FDT drivers when we see SBI_ENODEV returned
by cold_init() of FDT driver.
Signed-off-by: Anup Patel <anup.patel@wdc.com>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
Reviewed-by: Xiang W <wxjstz@126.com>
Diffstat (limited to 'lib/utils/irqchip')
-rw-r--r-- | lib/utils/irqchip/fdt_irqchip.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/utils/irqchip/fdt_irqchip.c b/lib/utils/irqchip/fdt_irqchip.c index 3630be6..1306d50 100644 --- a/lib/utils/irqchip/fdt_irqchip.c +++ b/lib/utils/irqchip/fdt_irqchip.c @@ -7,6 +7,7 @@ * Anup Patel <anup.patel@wdc.com> */ +#include <sbi/sbi_error.h> #include <sbi/sbi_scratch.h> #include <sbi_utils/fdt/fdt_helper.h> #include <sbi_utils/irqchip/fdt_irqchip.h> @@ -47,6 +48,8 @@ static int fdt_irqchip_cold_init(void) drv->match_table, &match)) >= 0) { if (drv->cold_init) { rc = drv->cold_init(fdt, noff, match); + if (rc == SBI_ENODEV) + continue; if (rc) return rc; } |