aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Bergling <gbe@FreeBSD.org>2024-04-18 14:19:18 +0000
committerGordon Bergling <gbe@FreeBSD.org>2024-04-21 07:36:37 +0000
commit05b5b4e966bf878959592006014c9f1f6ef0b6e2 (patch)
tree296b804c4e1f9e54f4cb2a7085046a3ff2363e30
parent411f60811bb1c283bb9a4a317d67fc393defc085 (diff)
downloadsrc-05b5b4e966bf878959592006014c9f1f6ef0b6e2.tar.gz
src-05b5b4e966bf878959592006014c9f1f6ef0b6e2.zip
oce(4): Fix a typo in a source code comment
- s/addres/address/ (cherry picked from commit e991acd5d0f60fe3c57acb452003c551194a758b)
-rw-r--r--sys/dev/oce/oce_mbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/oce/oce_mbox.c b/sys/dev/oce/oce_mbox.c
index a1926526edbf..d24f468c0382 100644
--- a/sys/dev/oce/oce_mbox.c
+++ b/sys/dev/oce/oce_mbox.c
@@ -483,7 +483,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);