Skip to content

Commit 523ae42

Browse files
committed
dts: arm: st: u5: fix wkup-pin@8 referencing non-existent port gpiof
With commit d280d89 the gpiof port got moved from file stm32u5.dtsi to file stm32u5_extra.dtsi. stm32u5_extra.dtsi is not included for STM32U535/545. In same file stm32u5.dtsi still node wkup-pin@8 references non-existent port gpiof. Fixes #93445 Signed-off-by: Andreas Schmidt <[email protected]>
1 parent 795a018 commit 523ae42

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

dts/arm/st/u5/stm32u5.dtsi

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -881,8 +881,7 @@
881881

882882
wkup-pin@8 {
883883
reg = <0x8>;
884-
wkup-gpios = <&gpiof 2 STM32_PWR_WKUP_EVT_SRC_0>,
885-
<&gpioa 7 STM32_PWR_WKUP_EVT_SRC_1>,
884+
wkup-gpios = <&gpioa 7 STM32_PWR_WKUP_EVT_SRC_1>,
886885
<&gpiob 10 STM32_PWR_WKUP_EVT_SRC_2>;
887886
};
888887
};

dts/arm/st/u5/stm32u5_extra.dtsi

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,11 @@
7777
};
7878
};
7979
};
80+
81+
&pwr {
82+
wkup-pin@8 {
83+
wkup-gpios = <&gpiof 2 STM32_PWR_WKUP_EVT_SRC_0>,
84+
<&gpioa 7 STM32_PWR_WKUP_EVT_SRC_1>,
85+
<&gpiob 10 STM32_PWR_WKUP_EVT_SRC_2>;
86+
};
87+
};

0 commit comments

Comments
 (0)