diff options
author | Dinh Nguyen <dinguyen@kernel.org> | 2023-06-25 23:12:40 +0300 |
---|---|---|
committer | Dinh Nguyen <dinguyen@kernel.org> | 2023-07-10 03:45:09 +0300 |
commit | c91e8f3373fe0d4f59c8fa39c9c4225ad1919927 (patch) | |
tree | 2e3d7aa16ff2b03c9e1eb7a7670ac5db2a09f4be /arch/arm64/boot/dts/intel/socfpga_agilex.dtsi | |
parent | b2c62c39567ccd3315076c542b73f29e38d50aaa (diff) | |
download | linux-c91e8f3373fe0d4f59c8fa39c9c4225ad1919927.tar.xz |
arm64: dts: agilex/stratix10/n5x: fix dtbs_check for rstmgr
The bindings expect "altr,rst-mgr" as a fallback in the rstmgr
compatible:
rstmgr@ffd11000: compatible: 'oneOf' conditional failed, one must be fixed:
['altr,stratix10-rst-mgr'] is too short
'altr,rst-mgr' was expected
Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>
Diffstat (limited to 'arch/arm64/boot/dts/intel/socfpga_agilex.dtsi')
-rw-r--r-- | arch/arm64/boot/dts/intel/socfpga_agilex.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi b/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi index 34e65a9cae61..fc047aef4911 100644 --- a/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi +++ b/arch/arm64/boot/dts/intel/socfpga_agilex.dtsi @@ -376,9 +376,9 @@ }; rst: rstmgr@ffd11000 { - #reset-cells = <1>; - compatible = "altr,stratix10-rst-mgr"; + compatible = "altr,stratix10-rst-mgr", "altr,rst-mgr"; reg = <0xffd11000 0x100>; + #reset-cells = <1>; }; smmu: iommu@fa000000 { |