git: e184cd907e80 - stable/13 - atse(4): Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 23 Jan 2024 06:48:14 UTC
The branch stable/13 has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=e184cd907e80b4364c3d23b87e709d579d6eb89d
commit e184cd907e80b4364c3d23b87e709d579d6eb89d
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2024-01-20 16:35:51 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2024-01-23 06:47:43 +0000
atse(4): Fix a typo in a source code comment
- s/addresss/address/
(cherry picked from commit 2b1e4e5be3047411df5e4d5442aa7de6489a0309)
---
sys/dev/altera/atse/if_atse.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/altera/atse/if_atse.c b/sys/dev/altera/atse/if_atse.c
index 080c67174781..b13c1ca8c563 100644
--- a/sys/dev/altera/atse/if_atse.c
+++ b/sys/dev/altera/atse/if_atse.c
@@ -582,7 +582,7 @@ atse_get_eth_address(struct atse_softc *sc)
sc->atse_eth_addr[4] = atse_ethernet_option_bits[8];
sc->atse_eth_addr[5] = atse_ethernet_option_bits[9];
- /* Handle factory default ethernet addresss: 00:07:ed:ff:ed:15 */
+ /* Handle factory default ethernet address: 00:07:ed:ff:ed:15 */
if (sc->atse_eth_addr[0] == 0x00 && sc->atse_eth_addr[1] == 0x07 &&
sc->atse_eth_addr[2] == 0xed && sc->atse_eth_addr[3] == 0xff &&
sc->atse_eth_addr[4] == 0xed && sc->atse_eth_addr[5] == 0x15) {