git: 1c759bd4deec - stable/12 - qat(4): Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 27 Jul 2022 15:56:04 UTC
The branch stable/12 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=1c759bd4deecd759dedc170fca735fd4cbc385a0 commit 1c759bd4deecd759dedc170fca735fd4cbc385a0 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-07-16 11:47:14 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-07-27 15:54:38 +0000 qat(4): Fix a typo in a source code comment - s/bufer/buffer/ Obtained from: NetBSD (cherry picked from commit 9fd95378f38390c76363e9884e25b37724b8a753) --- sys/dev/qat/qatvar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/qat/qatvar.h b/sys/dev/qat/qatvar.h index 76b9f5106f68..155342a6f1a0 100644 --- a/sys/dev/qat/qatvar.h +++ b/sys/dev/qat/qatvar.h @@ -149,7 +149,7 @@ struct qat_dmamem { #define QAT_SIZE_TO_RING_SIZE_IN_BYTES(SIZE) ((1 << (SIZE - 1)) << 7) #define QAT_RING_SIZE_IN_BYTES_TO_SIZE(SIZE) ((1 << (SIZE - 1)) >> 7) -/* Minimum ring bufer size for memory allocation */ +/* Minimum ring buffer size for memory allocation */ #define QAT_RING_SIZE_BYTES_MIN(SIZE) \ ((SIZE < QAT_SIZE_TO_RING_SIZE_IN_BYTES(QAT_RING_SIZE_4K)) ? \ QAT_SIZE_TO_RING_SIZE_IN_BYTES(QAT_RING_SIZE_4K) : SIZE)