git: c065e2673c38 - stable/14 - atse(4): Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Tue, 23 Jan 2024 06:43:57 UTC
The branch stable/14 has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=c065e2673c38fe786b9dc654da1163b92030091b

commit c065e2673c38fe786b9dc654da1163b92030091b
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:40:48 +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 bd252693e6df..923292484207 100644
--- a/sys/dev/altera/atse/if_atse.c
+++ b/sys/dev/altera/atse/if_atse.c
@@ -580,7 +580,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) {