Module Name: src
Committed By: andvar
Date: Tue Nov 5 22:00:31 UTC 2024
Modified Files:
src/sys/arch/powerpc/include/booke: etsecreg.h
src/sys/dev/pci: if_ti.c
Log Message:
s/UCP/UDP/ in comments.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/powerpc/include/booke/etsecreg.h
cvs rdiff -u -r1.124 -r1.125 src/sys/dev/pci/if_ti.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/powerpc/include/booke/etsecreg.h
diff -u src/sys/arch/powerpc/include/booke/etsecreg.h:1.11 src/sys/arch/powerpc/include/booke/etsecreg.h:1.12
--- src/sys/arch/powerpc/include/booke/etsecreg.h:1.11 Mon Feb 26 20:20:01 2024
+++ src/sys/arch/powerpc/include/booke/etsecreg.h Tue Nov 5 22:00:30 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: etsecreg.h,v 1.11 2024/02/26 20:20:01 andvar Exp $ */
+/* $NetBSD: etsecreg.h,v 1.12 2024/11/05 22:00:30 andvar Exp $ */
/*-
* Copyright (c) 2010, 2011 The NetBSD Foundation, Inc.
* All rights reserved.
@@ -67,7 +67,7 @@ struct txbd {
#define TXFCB_TUP 0x1000 /* Layer 4 is TCP or UDP */
#define TXFCB_UDP 0x0800 /* UDP at layer 4 */
#define TXFCB_CIP 0x0400 /* Checksum IP header enable */
-#define TXFCB_CTU 0x0200 /* Checksum TCP or UCP header enable */
+#define TXFCB_CTU 0x0200 /* Checksum TCP or UDP header enable */
#define TXFCB_NPH 0x0100 /* No std Pseudo-Header checksum, use phcs */
struct txfcb {
Index: src/sys/dev/pci/if_ti.c
diff -u src/sys/dev/pci/if_ti.c:1.124 src/sys/dev/pci/if_ti.c:1.125
--- src/sys/dev/pci/if_ti.c:1.124 Fri Jul 5 04:31:51 2024
+++ src/sys/dev/pci/if_ti.c Tue Nov 5 22:00:30 2024
@@ -1,4 +1,4 @@
-/* $NetBSD: if_ti.c,v 1.124 2024/07/05 04:31:51 rin Exp $ */
+/* $NetBSD: if_ti.c,v 1.125 2024/11/05 22:00:30 andvar Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -48,7 +48,7 @@
* The Alteon Networks Tigon chip contains an embedded R4000 CPU,
* gigabit MAC, dual DMA channels and a PCI interface unit. NICs
* using the Tigon may have anywhere from 512K to 2MB of SRAM. The
- * Tigon supports hardware IP, TCP and UCP checksumming, multicast
+ * Tigon supports hardware IP, TCP and UDP checksumming, multicast
* filtering and jumbo (9014 byte) frames. The hardware is largely
* controlled by firmware, which must be loaded into the NIC during
* initialization.
@@ -81,7 +81,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_ti.c,v 1.124 2024/07/05 04:31:51 rin Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ti.c,v 1.125 2024/11/05 22:00:30 andvar Exp $");
#include "opt_inet.h"