From fed81a1257ea64b29de76cc700cfed41cfe2eb8d Mon Sep 17 00:00:00 2001 From: Balaji Selvanathan Date: Fri, 22 May 2026 18:12:04 +0530 Subject: [PATCH] arm: dts: talos: Disable SD card controller The Talos EVK does not have SD card support. So, disable the sdhc_2 node in the U-Boot device tree to prevent unnecessary initialization attempts and eliminate boot warnings. Signed-off-by: Balaji Selvanathan --- arch/arm/dts/talos-evk-u-boot.dtsi | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/arch/arm/dts/talos-evk-u-boot.dtsi b/arch/arm/dts/talos-evk-u-boot.dtsi index f51d58b26ff5..068ececd7100 100644 --- a/arch/arm/dts/talos-evk-u-boot.dtsi +++ b/arch/arm/dts/talos-evk-u-boot.dtsi @@ -60,3 +60,8 @@ }; }; }; + +/* Disable SD card controller */ +&sdhc_2 { + status = "disabled"; +};