diff options
author | Alexandre Torgue <[email protected]> | 2021-04-15 12:10:26 +0200 |
---|---|---|
committer | Alexandre Torgue <[email protected]> | 2021-06-01 12:09:20 +0200 |
commit | e4b948415a89a219d13e454011cdcf9e63ecc529 (patch) | |
tree | a3c2dfe1c89201abd5932272bbe1d50bee1c9f79 | |
parent | bf24b91f4baf7e421c770a1d9c7d381b10206ac9 (diff) |
ARM: dts: stm32: fix RCC node name on stm32f429 MCU
This prevent warning observed with "make dtbs_check W=1"
Warning (simple_bus_reg): /soc/rcc@40023810: simple-bus unit address format
error, expected "40023800"
Signed-off-by: Alexandre Torgue <[email protected]>
-rw-r--r-- | arch/arm/boot/dts/stm32f429.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/stm32f429.dtsi b/arch/arm/boot/dts/stm32f429.dtsi index f6530d724d00..41e0087bdbf9 100644 --- a/arch/arm/boot/dts/stm32f429.dtsi +++ b/arch/arm/boot/dts/stm32f429.dtsi @@ -709,7 +709,7 @@ status = "disabled"; }; - rcc: rcc@40023810 { + rcc: rcc@40023800 { #reset-cells = <1>; #clock-cells = <2>; compatible = "st,stm32f42xx-rcc", "st,stm32-rcc"; |