From 7cbdf8a05db7da9c78e8ac74542febc646d24abd Mon Sep 17 00:00:00 2001 From: Emmanuel Vadot Date: Thu, 22 Apr 2021 21:41:56 +0200 Subject: [PATCH] dwmmc: Add \n to a debug printf --- 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 6b635f55bd4..f28d842bd80 100644 --- a/sys/dev/mmc/host/dwmmc.c +++ b/sys/dev/mmc/host/dwmmc.c @@ -858,7 +858,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);