diff options
author | Gary Bisson <gary.bisson@ezurio.com> | 2024-10-17 10:02:48 +0000 |
---|---|---|
committer | Kevin Bowling <kbowling@FreeBSD.org> | 2024-10-28 03:27:18 +0000 |
commit | 6a7aa5530c0d860c98c982968ac27728daaac7aa (patch) | |
tree | 99de74741efa326455ee617649d35d3c584d344d | |
parent | c222619cd4807e9e0274e6fadcbe259cf5cabc26 (diff) |
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>
-rw-r--r-- | sys/dev/ffec/if_ffec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ffec/if_ffec.c b/sys/dev/ffec/if_ffec.c index 1a562b149f61..17fab283fc81 100644 --- a/sys/dev/ffec/if_ffec.c +++ b/sys/dev/ffec/if_ffec.c @@ -968,7 +968,7 @@ ffec_get_hwaddr(struct ffec_softc *sc, uint8_t *hwaddr) if (bootverbose) { 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[3], hwaddr[4], hwaddr[5]); } |