git: e991acd5d0f6 - main - oce(4): Fix a typo in a source code comment

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Thu, 18 Apr 2024 14:19:29 UTC
The branch main has been updated by gbe:

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

commit e991acd5d0f60fe3c57acb452003c551194a758b
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2024-04-18 14:19:18 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2024-04-18 14:19:18 +0000

    oce(4): Fix a typo in a source code comment
    
    - s/addres/address/
    
    MFC after:      3 days
---
 sys/dev/oce/oce_mbox.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/oce/oce_mbox.c b/sys/dev/oce/oce_mbox.c
index 3717eb91d36b..a51798119761 100644
--- a/sys/dev/oce/oce_mbox.c
+++ b/sys/dev/oce/oce_mbox.c
@@ -471,7 +471,7 @@ oce_read_mac_addr(POCE_SOFTC sc, uint32_t if_id,
 		goto error;
 	}
 
-	/* copy the mac addres in the output parameter */
+	/* copy the mac address in the output parameter */
 	mac->size_of_struct = fwcmd->params.rsp.mac.size_of_struct;
 	bcopy(&fwcmd->params.rsp.mac.mac_addr[0], &mac->mac_addr[0],
 		mac->size_of_struct);