git: e4a203234add - main - qat(4): Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 16 Jul 2022 11:47:31 UTC
The branch main has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=e4a203234add5c57e5081521a4f4018bae7e398d commit e4a203234add5c57e5081521a4f4018bae7e398d Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-07-16 11:47:14 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-07-16 11:47:14 +0000 qat(4): Fix a typo in a source code comment - s/bufer/buffer/ Obtained from: NetBSD MFC after: 3 days --- 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 3f0ecd411874..3e782d1bbb89 100644 --- a/sys/dev/qat/qatvar.h +++ b/sys/dev/qat/qatvar.h @@ -147,7 +147,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)