diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2020-06-29 10:24:12 +0300 |
---|---|---|
committer | Krzysztof Kozlowski <krzk@kernel.org> | 2020-09-11 18:42:30 +0300 |
commit | 5024f03c09e4410db880a900f46fac413cd39855 (patch) | |
tree | 4123ba40d6129762e793760c5a4d44aae98df2ec /arch/arm64/boot/dts/amazon | |
parent | b2b72b00795a397730e606b6c168458e8068682c (diff) | |
download | linux-5024f03c09e4410db880a900f46fac413cd39855.tar.xz |
arm64: dts: alpine: Fix GIC unit address
Node unit address should be the same as first address appearing in "reg"
property. Fixes DTC warning:
arch/arm64/boot/dts/al/alpine-v2.dtsi:116.38-126.5:
Warning (simple_bus_reg): /soc/interrupt-controller@f0100000: simple-bus unit address format error, expected "f0200000"
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Diffstat (limited to 'arch/arm64/boot/dts/amazon')
-rw-r--r-- | arch/arm64/boot/dts/amazon/alpine-v2.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/amazon/alpine-v2.dtsi b/arch/arm64/boot/dts/amazon/alpine-v2.dtsi index de2eaf77b1ff..4eb2cd14e00b 100644 --- a/arch/arm64/boot/dts/amazon/alpine-v2.dtsi +++ b/arch/arm64/boot/dts/amazon/alpine-v2.dtsi @@ -113,7 +113,7 @@ <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>; }; - gic: interrupt-controller@f0100000 { + gic: interrupt-controller@f0200000 { compatible = "arm,gic-v3"; reg = <0x0 0xf0200000 0x0 0x10000>, /* GIC Dist */ <0x0 0xf0280000 0x0 0x200000>, /* GICR */ |