Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 11 Dec 2023 10:41:12 GMT
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 96812bd10b42 - main - eqos: Remove extra x in printf
Message-ID:  <202312111041.3BBAfCbA013138@gitrepo.freebsd.org>

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

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

commit 96812bd10b42294dbcd5ebe6dc006569ba85887c
Author:     Emmanuel Vadot <manu@FreeBSD.org>
AuthorDate: 2023-12-11 10:28:33 +0000
Commit:     Emmanuel Vadot <manu@FreeBSD.org>
CommitDate: 2023-12-11 10:31:24 +0000

    eqos: Remove extra x in printf
    
    No functional changes intended.
---
 sys/dev/eqos/if_eqos.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/eqos/if_eqos.c b/sys/dev/eqos/if_eqos.c
index 88a9261ca5c3..0dc476acd520 100644
--- a/sys/dev/eqos/if_eqos.c
+++ b/sys/dev/eqos/if_eqos.c
@@ -1126,7 +1126,7 @@ eqos_attach(device_t dev)
 	snpsver = ver & GMAC_MAC_VERSION_SNPSVER_MASK;
 
 	if (snpsver != 0x51) {
-		device_printf(dev, "EQOS version 0x%02xx not supported\n",
+		device_printf(dev, "EQOS version 0x%02x not supported\n",
 		    snpsver);
 		return (ENXIO);
 	}



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