git: 96812bd10b42 - main - eqos: Remove extra x in printf
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 11 Dec 2023 10:41:12 UTC
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); }