git: 9fd95378f383 - stable/13 - qat(4): Fix a typo in a source code comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 19 Jul 2022 16:01:39 UTC
The branch stable/13 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=9fd95378f38390c76363e9884e25b37724b8a753
commit 9fd95378f38390c76363e9884e25b37724b8a753
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2022-07-16 11:47:14 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2022-07-19 16:01:23 +0000
qat(4): Fix a typo in a source code comment
- s/bufer/buffer/
Obtained from: NetBSD
(cherry picked from commit e4a203234add5c57e5081521a4f4018bae7e398d)
---
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 47b83820510d..284b4c27fa05 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)