if_ffec: fix MAC address bootverbose print

Remove extraneous colon at the end.

MFC after:	3 days
Pull Request:	https://github.com/freebsd/freebsd-src/pull/1479

Signed-off-by: Gary Bisson <gary.bisson@ezurio.com>
This commit is contained in:
Gary Bisson 2024-10-17 12:02:48 +02:00 committed by Kevin Bowling
parent c222619cd4
commit 6a7aa5530c

View File

@ -968,7 +968,7 @@ ffec_get_hwaddr(struct ffec_softc *sc, uint8_t *hwaddr)
if (bootverbose) { if (bootverbose) {
device_printf(sc->dev, device_printf(sc->dev,
"MAC address %02x:%02x:%02x:%02x:%02x:%02x:\n", "MAC address %02x:%02x:%02x:%02x:%02x:%02x\n",
hwaddr[0], hwaddr[1], hwaddr[2], hwaddr[0], hwaddr[1], hwaddr[2],
hwaddr[3], hwaddr[4], hwaddr[5]); hwaddr[3], hwaddr[4], hwaddr[5]);
} }