git: 0979bfb0ec80 - main - smsc: Add missing newline to PHY timeout error printf
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 05 May 2026 23:52:05 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=0979bfb0ec804590a782ea33b787ec0989c1f1a4
commit 0979bfb0ec804590a782ea33b787ec0989c1f1a4
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2026-05-05 23:50:46 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2026-05-05 23:51:43 +0000
smsc: Add missing newline to PHY timeout error printf
---
sys/dev/usb/net/if_smsc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/usb/net/if_smsc.c b/sys/dev/usb/net/if_smsc.c
index 8e16b8609144..c3c21fd22472 100644
--- a/sys/dev/usb/net/if_smsc.c
+++ b/sys/dev/usb/net/if_smsc.c
@@ -1296,7 +1296,7 @@ smsc_phy_init(struct smsc_softc *sc)
} while ((bmcr & BMCR_RESET) && ((ticks - start_ticks) < max_ticks));
if (((usb_ticks_t)(ticks - start_ticks)) >= max_ticks) {
- smsc_err_printf(sc, "PHY reset timed-out");
+ smsc_err_printf(sc, "PHY reset timed-out\n");
return (EIO);
}