Date: Sat, 3 Feb 2024 01:36:32 GMT From: Warner Losh <imp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: abd9758fe2d2 - main - sys/dev/mii/mcommphy.c: remove an extra semicolon Message-ID: <202402030136.4131aWXY011200@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=abd9758fe2d2dc39e6bbbf4c00af81f26328cb61 commit abd9758fe2d2dc39e6bbbf4c00af81f26328cb61 Author: rilysh <nightquick@proton.me> AuthorDate: 2024-02-03 00:38:12 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2024-02-03 01:35:00 +0000 sys/dev/mii/mcommphy.c: remove an extra semicolon Signed-off-by: rilysh <nightquick@proton.me> Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/959 --- sys/dev/mii/mcommphy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/mii/mcommphy.c b/sys/dev/mii/mcommphy.c index 17ed294ff223..a8a16c00bade 100644 --- a/sys/dev/mii/mcommphy.c +++ b/sys/dev/mii/mcommphy.c @@ -130,7 +130,7 @@ mcommphy_attach(device_t dev) PHY_WRITE(sc, EXT_REG_ADDR, PHY_CLOCK_GATING_REG); data = PHY_READ(sc, EXT_REG_DATA); data &= ~CLK_25M_SEL; - data |= SHIFTIN(CLK_25M_SEL_125M, CLK_25M_SEL);; + data |= SHIFTIN(CLK_25M_SEL_125M, CLK_25M_SEL); if (sc->mii_flags & MIIF_RX_DELAY) { data |= RX_CLK_DELAY_EN; } else {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202402030136.4131aWXY011200>