Module Name: src
Committed By: christos
Date: Tue Jan 26 16:01:45 UTC 2016
Modified Files:
src/sys/dev/pci: if_ale.c
Log Message:
PR/50693: David Binderman: Fix constant pasto.
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/dev/pci/if_ale.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/dev/pci/if_ale.c
diff -u src/sys/dev/pci/if_ale.c:1.18 src/sys/dev/pci/if_ale.c:1.19
--- src/sys/dev/pci/if_ale.c:1.18 Mon Apr 13 12:33:25 2015
+++ src/sys/dev/pci/if_ale.c Tue Jan 26 11:01:45 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: if_ale.c,v 1.18 2015/04/13 16:33:25 riastradh Exp $ */
+/* $NetBSD: if_ale.c,v 1.19 2016/01/26 16:01:45 christos Exp $ */
/*-
* Copyright (c) 2008, Pyun YongHyeon <[email protected]>
@@ -32,7 +32,7 @@
/* Driver for Atheros AR8121/AR8113/AR8114 PCIe Ethernet. */
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_ale.c,v 1.18 2015/04/13 16:33:25 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_ale.c,v 1.19 2016/01/26 16:01:45 christos Exp $");
#include "vlan.h"
@@ -541,7 +541,7 @@ ale_attach(device_t parent, device_t sel
#ifdef ALE_CHECKSUM
ifp->if_capabilities |= IFCAP_CSUM_IPv4_Tx | IFCAP_CSUM_IPv4_Rx |
IFCAP_CSUM_TCPv4_Tx | IFCAP_CSUM_TCPv4_Rx |
- IFCAP_CSUM_UDPv4_Tx | IFCAP_CSUM_TCPv4_Rx;
+ IFCAP_CSUM_UDPv4_Tx | IFCAP_CSUM_UDPv4_Rx;
#endif
#if NVLAN > 0