git: f6deb48c118d - stable/13 - dwmmc: Add \n to a debug printf
Emmanuel Vadot
manu at FreeBSD.org
Thu Jul 22 16:47:25 UTC 2021
The branch stable/13 has been updated by manu:
URL: https://cgit.FreeBSD.org/src/commit/?id=f6deb48c118d453e4808afb429ae133760237146
commit f6deb48c118d453e4808afb429ae133760237146
Author: Emmanuel Vadot <manu at FreeBSD.org>
AuthorDate: 2021-04-22 19:41:56 +0000
Commit: Emmanuel Vadot <manu at FreeBSD.org>
CommitDate: 2021-07-22 16:47:07 +0000
dwmmc: Add \n to a debug printf
(cherry picked from commit 7cbdf8a05db7da9c78e8ac74542febc646d24abd)
---
sys/dev/mmc/host/dwmmc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/mmc/host/dwmmc.c b/sys/dev/mmc/host/dwmmc.c
index ed24cbba923f..1ffbf4aec41c 100644
--- a/sys/dev/mmc/host/dwmmc.c
+++ b/sys/dev/mmc/host/dwmmc.c
@@ -857,7 +857,7 @@ dwmmc_setup_bus(struct dwmmc_softc *sc, int freq)
tout = 1000;
do {
if (tout-- < 0) {
- device_printf(sc->dev, "Failed to update clk");
+ device_printf(sc->dev, "Failed to update clk\n");
return (1);
}
} while (READ4(sc, SDMMC_CMD) & SDMMC_CMD_START);
More information about the dev-commits-src-all
mailing list