Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 Jun 2024 08:28:08 GMT
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 7c2a21107d42 - stable/14 - eqos: Remove extra x in printf
Message-ID:  <202406050828.4558S8Gg025283@gitrepo.freebsd.org>

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

URL: https://cgit.FreeBSD.org/src/commit/?id=7c2a21107d42c1309548b5d11e57033d4ae24679

commit 7c2a21107d42c1309548b5d11e57033d4ae24679
Author:     Emmanuel Vadot <manu@FreeBSD.org>
AuthorDate: 2023-12-11 10:28:33 +0000
Commit:     Emmanuel Vadot <manu@FreeBSD.org>
CommitDate: 2024-06-05 08:16:33 +0000

    eqos: Remove extra x in printf
    
    No functional changes intended.
    
    (cherry picked from commit 96812bd10b42294dbcd5ebe6dc006569ba85887c)
---
 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 3ee406f26def..782c8beff98e 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?202406050828.4558S8Gg025283>