Module Name:    src
Committed By:   nisimura
Date:           Thu Nov  7 22:00:37 UTC 2019

Modified Files:
        src/sys/dev/pci: if_kse.c

Log Message:
comment touchup


To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/sys/dev/pci/if_kse.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_kse.c
diff -u src/sys/dev/pci/if_kse.c:1.40 src/sys/dev/pci/if_kse.c:1.41
--- src/sys/dev/pci/if_kse.c:1.40	Thu Nov  7 09:05:29 2019
+++ src/sys/dev/pci/if_kse.c	Thu Nov  7 22:00:37 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_kse.c,v 1.40 2019/11/07 09:05:29 nisimura Exp $	*/
+/*	$NetBSD: if_kse.c,v 1.41 2019/11/07 22:00:37 nisimura Exp $	*/
 
 /*-
  * Copyright (c) 2006 The NetBSD Foundation, Inc.
@@ -29,8 +29,12 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
+/*
+ * Micrel 8841/8842 10/100 ethernet driver
+ */
+
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_kse.c,v 1.40 2019/11/07 09:05:29 nisimura Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_kse.c,v 1.41 2019/11/07 22:00:37 nisimura Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -519,7 +523,7 @@ kse_attach(device_t parent, device_t sel
 		 * 8842 MAC is tied with a builtin 3 port switch.
 		 * It can do rate control over either of tx / rx direction
 		 * respectively, tough, this driver leaves the rate unlimited
-		 * intending 100Mbps maxinum.
+		 * intending 100Mbps maximum.
 		 * 2 ports behave in AN mode and this driver provides no mean
 		 * to see the exact details.
 		 */
@@ -543,7 +547,7 @@ kse_attach(device_t parent, device_t sel
 	IFQ_SET_READY(&ifp->if_snd);
 
 	/*
-	 * KSZ8842 can handle 802.1Q VLAN-sized frames,
+	 * capable of 802.1Q VLAN-sized frames,
 	 * can do IPv4, TCPv4, and UDPv4 checksums in hardware.
 	 */
 	sc->sc_ethercom.ec_capabilities |= ETHERCAP_VLAN_MTU;

Reply via email to