From dbf385bb080ef21c158f9c4602df9f54c6ab8424 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20G=C5=82=C4=85bek?= Date: Fri, 27 Oct 2023 21:05:39 +0200 Subject: [PATCH] boards: bl653_dvk: Fix incorrect definition of cs-gpios in spi1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `cs-gpios = <&gpio1 23 0>;` is incorrect, since pin P1.23 does not even exist in nRF52833. According to schematic, it should be P0.23 and this CS line should be configured as active low. Signed-off-by: Andrzej Głąbek --- boards/arm/bl653_dvk/bl653_dvk.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/arm/bl653_dvk/bl653_dvk.dts b/boards/arm/bl653_dvk/bl653_dvk.dts index ba8fa3658d248f..4c536eb4512550 100644 --- a/boards/arm/bl653_dvk/bl653_dvk.dts +++ b/boards/arm/bl653_dvk/bl653_dvk.dts @@ -148,7 +148,7 @@ &spi1 { compatible = "nordic,nrf-spi"; status = "okay"; - cs-gpios = <&gpio1 23 0>; + cs-gpios = <&gpio0 23 GPIO_ACTIVE_LOW>; pinctrl-0 = <&spi1_default>; pinctrl-1 = <&spi1_sleep>; pinctrl-names = "default", "sleep";