diff options
author | Michal Simek <michal.simek@xilinx.com> | 2020-02-25 10:00:26 +0100 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2020-04-15 10:39:21 +0200 |
commit | 818227321d331c583c4563a8275eb187b98475df (patch) | |
tree | 8f9b22b4b4e76f812b46ed13a8aaf345a8c5541e /arch/arm64/boot | |
parent | arm64: zynqmp: Add Xilinx AES node (diff) | |
download | linux-818227321d331c583c4563a8275eb187b98475df.tar.xz linux-818227321d331c583c4563a8275eb187b98475df.zip |
arm64: zynqmp: Fix GIC compatible property
dtbs_check is showing warning around GIC compatible property as
interrupt-controller@f9010000: compatible: ['arm,gic-400', 'arm,cortex-a15-gic']
is not valid under any of the given schemas
Similar change has been done also by commit 5400cdc1410b
("ARM: dts: sunxi: Fix GIC compatible")
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Link: https://lore.kernel.org/r/a50412fbb520954e4602f274f19a7ffbd1154ead.1582621224.git.michal.simek@xilinx.com
Diffstat (limited to 'arch/arm64/boot')
-rw-r--r-- | arch/arm64/boot/dts/xilinx/zynqmp.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/xilinx/zynqmp.dtsi b/arch/arm64/boot/dts/xilinx/zynqmp.dtsi index de4c694ee7af..9174ddc76bdc 100644 --- a/arch/arm64/boot/dts/xilinx/zynqmp.dtsi +++ b/arch/arm64/boot/dts/xilinx/zynqmp.dtsi @@ -189,7 +189,7 @@ ranges = <0 0 0 0 0xffffffff>; gic: interrupt-controller@f9010000 { - compatible = "arm,gic-400", "arm,cortex-a15-gic"; + compatible = "arm,gic-400"; #interrupt-cells = <3>; reg = <0x0 0xf9010000 0x10000>, <0x0 0xf9020000 0x20000>, |