Commit e3a55c96 authored by Andreas Schmidt's avatar Andreas Schmidt Committed by Dan Kalowsky
Browse files

dts: arm: st: u5: fix wkup-pin@8 referencing non-existent port gpiof



With commit d280d892 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: default avatarAndreas Schmidt <andreas.schmidt@dormakaba.com>
(cherry picked from commit 528ab9d9)
parent 663da230
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -881,8 +881,7 @@

			wkup-pin@8 {
				reg = <0x8>;
				wkup-gpios = <&gpiof 2 STM32_PWR_WKUP_EVT_SRC_0>,
					     <&gpioa 7 STM32_PWR_WKUP_EVT_SRC_1>,
				wkup-gpios = <&gpioa 7 STM32_PWR_WKUP_EVT_SRC_1>,
					     <&gpiob 10 STM32_PWR_WKUP_EVT_SRC_2>;
			};
		};
+8 −0
Original line number Diff line number Diff line
@@ -77,3 +77,11 @@
		};
	};
};

&pwr {
	wkup-pin@8 {
		wkup-gpios = <&gpiof 2 STM32_PWR_WKUP_EVT_SRC_0>,
			     <&gpioa 7 STM32_PWR_WKUP_EVT_SRC_1>,
			     <&gpiob 10 STM32_PWR_WKUP_EVT_SRC_2>;
	};
};