git: 7c2a21107d42 - stable/14 - eqos: Remove extra x in printf
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 05 Jun 2024 08:28:08 UTC
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);
}