Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 Jul 2021 16:47:24 GMT
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: f6deb48c118d - stable/13 - dwmmc: Add \n to a debug printf
Message-ID:  <202107221647.16MGlOF0049973@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by manu:

URL: https://cgit.FreeBSD.org/src/commit/?id=f6deb48c118d453e4808afb429ae133760237146

commit f6deb48c118d453e4808afb429ae133760237146
Author:     Emmanuel Vadot <manu@FreeBSD.org>
AuthorDate: 2021-04-22 19:41:56 +0000
Commit:     Emmanuel Vadot <manu@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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202107221647.16MGlOF0049973>