Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/pci fix typo
details: https://anonhg.NetBSD.org/src/rev/8a53e20791a0
branches: trunk
changeset: 378543:8a53e20791a0
user: ryo <ryo%NetBSD.org@localhost>
date: Fri Apr 16 08:09:40 2021 +0000
description:
fix typo
diffstat:
sys/dev/pci/if_aq.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (32 lines):
diff -r 97081fdbbce6 -r 8a53e20791a0 sys/dev/pci/if_aq.c
--- a/sys/dev/pci/if_aq.c Fri Apr 16 08:07:02 2021 +0000
+++ b/sys/dev/pci/if_aq.c Fri Apr 16 08:09:40 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: if_aq.c,v 1.24 2021/04/16 08:07:02 ryo Exp $ */
+/* $NetBSD: if_aq.c,v 1.25 2021/04/16 08:09:40 ryo Exp $ */
/**
* aQuantia Corporation Network Driver
@@ -62,7 +62,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_aq.c,v 1.24 2021/04/16 08:07:02 ryo Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_aq.c,v 1.25 2021/04/16 08:09:40 ryo Exp $");
#ifdef _KERNEL_OPT
#include "opt_if_aq.h"
@@ -1449,11 +1449,11 @@ aq_attach(device_t parent, device_t self
ifp->if_capabilities |= IFCAP_TSOv4 | IFCAP_TSOv6;
#endif
- /* TX hardware checksum offloadding */
+ /* TX hardware checksum offloading */
ifp->if_capabilities |= IFCAP_CSUM_IPv4_Tx;
ifp->if_capabilities |= IFCAP_CSUM_TCPv4_Tx | IFCAP_CSUM_TCPv6_Tx;
ifp->if_capabilities |= IFCAP_CSUM_UDPv4_Tx | IFCAP_CSUM_UDPv6_Tx;
- /* RX hardware checksum offloadding */
+ /* RX hardware checksum offloading */
ifp->if_capabilities |= IFCAP_CSUM_IPv4_Rx;
ifp->if_capabilities |= IFCAP_CSUM_TCPv4_Rx | IFCAP_CSUM_TCPv6_Rx;
ifp->if_capabilities |= IFCAP_CSUM_UDPv4_Rx | IFCAP_CSUM_UDPv6_Rx;
Home |
Main Index |
Thread Index |
Old Index