diff options
author | Johan Jonker <jbx6244@gmail.com> | 2020-12-18 13:05:33 +0100 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2021-03-25 01:35:15 +0100 |
commit | 6b5c50863b3e6837f856a137fe6880ed4662335b (patch) | |
tree | f565089ea9d56a078397b6105318cada2a71f679 | |
parent | 2499448c920fc9648350d4f21e1fbd00ccd108ee (diff) | |
download | lwn-6b5c50863b3e6837f856a137fe6880ed4662335b.tar.gz lwn-6b5c50863b3e6837f856a137fe6880ed4662335b.zip |
arm64: dts: rockchip: add new watchdog compatible to rk3399.dtsi
The watchdog compatible strings are suppose to be SoC orientated.
In the more recently added Rockchip rk3399.dtsi file only
the fallback string "snps,dw-wdt" is used, so add the new
compatible string:
"rockchip,rk3399-wdt", "snps,dw-wdt"
make ARCH=arm64 dtbs_check
DT_SCHEMA_FILES=Documentation/devicetree/bindings/watchdog/snps,dw-wdt.yaml
Signed-off-by: Johan Jonker <jbx6244@gmail.com>
Link: https://lore.kernel.org/r/20201218120534.13788-7-jbx6244@gmail.com
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
-rw-r--r-- | arch/arm64/boot/dts/rockchip/rk3399.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/rockchip/rk3399.dtsi b/arch/arm64/boot/dts/rockchip/rk3399.dtsi index edbbf35fe19e..e93a5f32068d 100644 --- a/arch/arm64/boot/dts/rockchip/rk3399.dtsi +++ b/arch/arm64/boot/dts/rockchip/rk3399.dtsi @@ -1531,7 +1531,7 @@ }; watchdog@ff848000 { - compatible = "snps,dw-wdt"; + compatible = "rockchip,rk3399-wdt", "snps,dw-wdt"; reg = <0x0 0xff848000 0x0 0x100>; clocks = <&cru PCLK_WDT>; interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH 0>; |