From 085e1226b677e1e930f9c07ad1a4935137b79d7f Mon Sep 17 00:00:00 2001 From: Sebastian Dauenhauer Date: Sun, 12 Oct 2025 15:52:21 +0200 Subject: [PATCH] boards: st: stm32n6570_dk: fix active state for cd gpio CD pin of the SDMMC on the STM32N6570-DK board was incorrectly set as active high, but is actually active low Signed-off-by: Sebastian Dauenhauer --- boards/st/stm32n6570_dk/stm32n6570_dk_common.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/st/stm32n6570_dk/stm32n6570_dk_common.dtsi b/boards/st/stm32n6570_dk/stm32n6570_dk_common.dtsi index 5b91c96d7d419..21f6e8f9d13e9 100644 --- a/boards/st/stm32n6570_dk/stm32n6570_dk_common.dtsi +++ b/boards/st/stm32n6570_dk/stm32n6570_dk_common.dtsi @@ -266,7 +266,7 @@ csi_i2c: &i2c1 { &sdmmc2_ck_pc2 &sdmmc2_cmd_pc3>; pinctrl-names = "default"; bus-width = <4>; - cd-gpios = <&gpion 12 GPIO_ACTIVE_HIGH>; + cd-gpios = <&gpion 12 GPIO_ACTIVE_LOW>; pwr-gpios = <&gpioq 7 GPIO_ACTIVE_HIGH>; disk-name = "SD"; };