From fcb4598047fc549bc3ff8bd7ce48fc8d46f7ac64 Mon Sep 17 00:00:00 2001 From: msaitoh Date: Sun, 5 Dec 2021 07:28:20 +0000 Subject: s/recusive/recursive/ in comment. --- sys/dev/pci/qat/qat_ae.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/pci/qat/qat_ae.c b/sys/dev/pci/qat/qat_ae.c index c284cc705f3..b7510c23465 100644 --- a/sys/dev/pci/qat/qat_ae.c +++ b/sys/dev/pci/qat/qat_ae.c @@ -1,4 +1,4 @@ -/* $NetBSD: qat_ae.c,v 1.1 2019/11/20 09:37:46 hikaru Exp $ */ +/* $NetBSD: qat_ae.c,v 1.2 2021/12/05 07:28:20 msaitoh Exp $ */ /* * Copyright (c) 2019 Internet Initiative Japan, Inc. @@ -57,7 +57,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: qat_ae.c,v 1.1 2019/11/20 09:37:46 hikaru Exp $"); +__KERNEL_RCSID(0, "$NetBSD: qat_ae.c,v 1.2 2021/12/05 07:28:20 msaitoh Exp $"); #include #include @@ -1485,7 +1485,7 @@ qat_ae_concat_ucode(uint64_t *ucode, u_int ninst, u_int size, u_int addr, addr += sizeof(u_int); size -= sizeof(u_int); } - /* call this function recusive when the left size less than 4 */ + /* call this function recursive when the left size less than 4 */ ninst += qat_ae_concat_ucode(ucode, ninst, size, addr, value + vali); -- cgit