Date: Wed, 3 Nov 2021 15:22:28 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: a506133ac91d - main - mana: Fix a typo in a source code comment Message-ID: <202111031522.1A3FMSix028091@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=a506133ac91da01e901cacae92133f68803bafe1 commit a506133ac91da01e901cacae92133f68803bafe1 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2021-11-03 15:20:11 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2021-11-03 15:20:11 +0000 mana: Fix a typo in a source code comment - s/maxium/maximum/ MFC after: 1 week --- sys/dev/mana/mana_en.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/mana/mana_en.c b/sys/dev/mana/mana_en.c index 7ad69457afc2..e57a2622d09f 100644 --- a/sys/dev/mana/mana_en.c +++ b/sys/dev/mana/mana_en.c @@ -2164,7 +2164,7 @@ mana_create_rxq(struct mana_port_context *apc, uint32_t rxq_idx, rxq->rxq_idx = rxq_idx; /* * Minimum size is MCLBYTES(2048) bytes for a mbuf cluster. - * Now we just allow maxium size of 4096. + * Now we just allow maximum size of 4096. */ rxq->datasize = ALIGN(apc->frame_size, MCLBYTES); if (rxq->datasize > MAX_FRAME_SIZE)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202111031522.1A3FMSix028091>