forked from Mirrors/opensbi
lib: utils/irqchip: Skip initialize irqchip when dt is not enabled
When the dt node has a status property and the value is not ok or okay, skip initializing irqchip. Signed-off-by: Xiang W <wxjstz@126.com> Reviewed-by: Anup Patel <anup@brainfault.org>
This commit is contained in:
@@ -62,6 +62,9 @@ static int fdt_irqchip_cold_init(void)
|
|||||||
drv_added = false;
|
drv_added = false;
|
||||||
while ((noff = fdt_find_match(fdt, noff,
|
while ((noff = fdt_find_match(fdt, noff,
|
||||||
drv->match_table, &match)) >= 0) {
|
drv->match_table, &match)) >= 0) {
|
||||||
|
if (!fdt_node_is_enabled(fdt,noff))
|
||||||
|
continue;
|
||||||
|
|
||||||
if (drv->cold_init) {
|
if (drv->cold_init) {
|
||||||
rc = drv->cold_init(fdt, noff, match);
|
rc = drv->cold_init(fdt, noff, match);
|
||||||
if (rc == SBI_ENODEV)
|
if (rc == SBI_ENODEV)
|
||||||
|
Reference in New Issue
Block a user