svn commit: r219949 - head/sys/dev/usb/controller

Hans Petter Selasky hselasky at FreeBSD.org
Thu Mar 24 07:59:22 UTC 2011


Author: hselasky
Date: Thu Mar 24 07:59:21 2011
New Revision: 219949
URL: http://svn.freebsd.org/changeset/base/219949

Log:
  Fix typo.
  
  Reported by:	Garrett Cooper
  MFC after:	14 days
  Approved by:	thompsa (mentor)

Modified:
  head/sys/dev/usb/controller/ehci.c

Modified: head/sys/dev/usb/controller/ehci.c
==============================================================================
--- head/sys/dev/usb/controller/ehci.c	Thu Mar 24 04:57:35 2011	(r219948)
+++ head/sys/dev/usb/controller/ehci.c	Thu Mar 24 07:59:21 2011	(r219949)
@@ -1189,7 +1189,7 @@ ehci_data_toggle_update(struct usb_xfer 
 	/* count number of full packets */
 	dt = (actlen / xfer->max_packet_size) & 1;
 
-	/* cumpute remainder */
+	/* compute remainder */
 	rem = actlen % xfer->max_packet_size;
 
 	if (rem > 0)


More information about the svn-src-head mailing list