Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/pci PR/50693: David Binderman: Fix constant pasto.



details:   https://anonhg.NetBSD.org/src/rev/1929dcd6fda2
branches:  trunk
changeset: 813389:1929dcd6fda2
user:      christos <christos%NetBSD.org@localhost>
date:      Tue Jan 26 16:01:45 2016 +0000

description:
PR/50693: David Binderman: Fix constant pasto.

diffstat:

 sys/dev/pci/if_ale.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r a18177cdd85b -r 1929dcd6fda2 sys/dev/pci/if_ale.c
--- a/sys/dev/pci/if_ale.c      Tue Jan 26 16:00:12 2016 +0000
+++ b/sys/dev/pci/if_ale.c      Tue Jan 26 16:01:45 2016 +0000
@@ -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 <yongari%FreeBSD.org@localhost>
@@ -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 @@
 #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



Home | Main Index | Thread Index | Old Index