Skip to content

Commit df8466a

Browse files
committed
kboot: Switch aic3 compatible to "apple,t8122-aic3"
Per discussion with the devicetree maintainers generic compatibles are no longer used. Instead use the SoC the block first appeared on as base compatible. Signed-off-by: Janne Grunau <j@jannau.net>
1 parent e892cbf commit df8466a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/kboot.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ static int dt_set_cpus(void)
585585
if (aic == -FDT_ERR_NOTFOUND)
586586
aic = fdt_node_offset_by_compatible(dt, -1, "apple,aic2");
587587
if (aic == -FDT_ERR_NOTFOUND)
588-
aic = fdt_node_offset_by_compatible(dt, -1, "apple,aic3");
588+
aic = fdt_node_offset_by_compatible(dt, -1, "apple,t8122-aic3");
589589
if (aic < 0)
590590
bail_cleanup("FDT: Failed to find AIC node\n");
591591

@@ -2418,7 +2418,7 @@ dt_transfer_virtios(void)
24182418
if (aic == -FDT_ERR_NOTFOUND)
24192419
aic = fdt_node_offset_by_compatible(dt, -1, "apple,aic2");
24202420
if (aic == -FDT_ERR_NOTFOUND)
2421-
aic = fdt_node_offset_by_compatible(dt, -1, "apple,aic3");
2421+
aic = fdt_node_offset_by_compatible(dt, -1, "apple,t8122-aic3");;
24222422
if (aic < 0)
24232423
bail("FDT: failed to find AIC node\n");
24242424

0 commit comments

Comments
 (0)