Skip to content

Commit 7598330

Browse files
JordanYatesnashif
authored andcommitted
sd: lower log level for boot message
This log message does not need to be repeated 10 times at the INFO level when the same information is provided after all the retries are done: ``` <inf> sd: Legacy card detected, no CMD8 support <inf> sd: Legacy card detected, no CMD8 support <inf> sd: Legacy card detected, no CMD8 support <inf> sd: Legacy card detected, no CMD8 support <inf> sd: Legacy card detected, no CMD8 support <inf> sd: Legacy card detected, no CMD8 support <inf> sd: Legacy card detected, no CMD8 support <inf> sd: Legacy card detected, no CMD8 support <inf> sd: Legacy card detected, no CMD8 support <inf> sd: Legacy card detected, no CMD8 support <inf> sd: Legacy card detected, no CMD8 support <inf> sd: Card does not support CMD8, assuming legacy card ``` to ``` <inf> sd: Card does not support CMD8, assuming legacy card ``` Signed-off-by: Jordan Yates <[email protected]>
1 parent 97d9876 commit 7598330

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/sd/sd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ static int sd_send_interface_condition(struct sd_card *card)
5656
resp = cmd.response[0];
5757
}
5858
if ((resp & 0xFF) != SD_IF_COND_CHECK) {
59-
LOG_INF("Legacy card detected, no CMD8 support");
59+
LOG_DBG("Legacy card detected, no CMD8 support");
6060
/* Retry probe */
6161
return SD_RETRY;
6262
}

0 commit comments

Comments
 (0)