commit | 82577ff832c82814191cbb0b9f4ae40140d4b858 | [log] [tgz] |
---|---|---|
author | Patrick Rudolph <patrick.rudolph@9elements.com> | Thu Mar 20 13:51:57 2025 +0100 |
committer | Tom Rini <trini@konsulko.com> | Tue Apr 08 16:23:27 2025 -0600 |
tree | c1fe1d4bcf163cff9e97449b57fb20aad4c33b4e | |
parent | a45f03fdabeee7f690bc5ca4205cc53243d100da [diff] [blame] |
emulation: qemu-sbsa: Move ITS node into GICv3 node According to the binding [1] the ITS node should be a subnode of the GICv3 node. Thus move it now that the driver binds subnodes as well. 1: https://www.kernel.org/doc/Documentation/devicetree/bindings/interrupt-controller/arm%2Cgic-v3.txt Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com>
diff --git a/board/emulation/qemu-sbsa/qemu-sbsa.c b/board/emulation/qemu-sbsa/qemu-sbsa.c index 3943c92..cf1d5ac 100644 --- a/board/emulation/qemu-sbsa/qemu-sbsa.c +++ b/board/emulation/qemu-sbsa/qemu-sbsa.c
@@ -202,7 +202,7 @@ smc_get_gic_its_base(&gic_its_base); if (gic_its_base != 0) { - offs = fdt_path_offset(fdt, "/its"); + offs = fdt_path_offset(fdt, "/interrupt-controller/msi-controller"); if (offs < 0) return offs;