From 419dc385f24cbf1fbab8ede9da122bafd2111999 Mon Sep 17 00:00:00 2001 From: Daniel DeGrasse Date: Tue, 1 Feb 2022 19:41:35 -0600 Subject: [PATCH] drivers: usdhc: Add log for DAT3 detection Add log to tell user when DAT3 detection method is in use Signed-off-by: Daniel DeGrasse --- drivers/disk/usdhc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/disk/usdhc.c b/drivers/disk/usdhc.c index 7b0fc2811ee..95547ea8999 100644 --- a/drivers/disk/usdhc.c +++ b/drivers/disk/usdhc.c @@ -2756,6 +2756,7 @@ static int usdhc_board_access_init(struct usdhc_priv *priv) if (!priv->detect_gpio) { LOG_INF("USDHC detection other than GPIO"); if (config->detect_dat3) { + LOG_INF("USDHC detection using DAT3 pull"); base->PROT_CTRL |= USDHC_PROT_CTRL_D3CD_MASK; /* Pull down DAT3 */ usdhc_dat3_pull(USDHC_DAT3_PULL_DOWN, priv);