Module Name:    src
Committed By:   skrll
Date:           Mon Mar 11 09:35:38 UTC 2013

Modified Files:
        src/sys/dev/usb: if_smsc.c

Log Message:
Comments corrections.


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/dev/usb/if_smsc.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/usb/if_smsc.c
diff -u src/sys/dev/usb/if_smsc.c:1.7 src/sys/dev/usb/if_smsc.c:1.8
--- src/sys/dev/usb/if_smsc.c:1.7	Sat Jan 26 07:52:16 2013
+++ src/sys/dev/usb/if_smsc.c	Mon Mar 11 09:35:38 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_smsc.c,v 1.7 2013/01/26 07:52:16 skrll Exp $	*/
+/*	$NetBSD: if_smsc.c,v 1.8 2013/03/11 09:35:38 skrll Exp $	*/
 
 /*	$OpenBSD: if_smsc.c,v 1.4 2012/09/27 12:38:11 jsg Exp $	*/
 /* $FreeBSD: src/sys/dev/usb/net/if_smsc.c,v 1.1 2012/08/15 04:03:55 gonzo Exp $ */
@@ -56,7 +56,7 @@
  * go through the packet data and decode the headers prior to sending.
  * On Linux they generally provide cues to the location of the csum and the
  * area to calculate it over, on FreeBSD we seem to have to do it all ourselves,
- * hence this is not as optimal and therefore h/w tX checksum is currently not
+ * hence this is not as optimal and therefore h/w TX checksum is currently not
  * implemented.
  */
 
@@ -798,7 +798,7 @@ smsc_chip_init(struct smsc_softc *sc)
 	 * There is a so called 'turbo mode' that the linux driver supports, it
 	 * seems to allow you to jam multiple frames per Rx transaction.
 	 * By default this driver supports that and therefore allows multiple
-	 * frames per URB.
+	 * frames per USB transfer.
 	 *
 	 * The xfer buffer size needs to reflect this as well, therefore based
 	 * on the calculations in the Linux driver the RX bufsize is set to
@@ -832,7 +832,7 @@ smsc_chip_init(struct smsc_softc *sc)
 	}
 
 	/*
-	 * The following setings are used for 'turbo mode', a.k.a multiple
+	 * The following settings are used for 'turbo mode', a.k.a multiple
 	 * frames per Rx transaction (again info taken form Linux driver).
 	 */
 #ifdef SMSC_TURBO

Reply via email to