The branch stable/14 has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=a95757d42f41896312da069d5d0217e59477b45d
commit a95757d42f41896312da069d5d0217e59477b45d Author: Ed Maste <[email protected]> AuthorDate: 2026-05-05 23:50:46 +0000 Commit: Ed Maste <[email protected]> CommitDate: 2026-06-11 17:10:56 +0000 smsc: Add missing newline to PHY timeout error printf (cherry picked from commit 0979bfb0ec804590a782ea33b787ec0989c1f1a4) (cherry picked from commit 471b1c4ca19b16693ed410da5023739a60d063f3) --- 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 0ebbf8482446..498a9ee3f926 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); }
