svn commit: r213175 - user/weongyo/usb/sys/dev/usb

Weongyo Jeong weongyo at FreeBSD.org
Sat Sep 25 21:02:42 UTC 2010


Author: weongyo
Date: Sat Sep 25 21:02:42 2010
New Revision: 213175
URL: http://svn.freebsd.org/changeset/base/213175

Log:
  Removes a wrong comment; this path is reached even if the host
  controller is not PIO mode.  For example transfering the request to the
  default pipe would be reached here.

Modified:
  user/weongyo/usb/sys/dev/usb/usb_busdma.c

Modified: user/weongyo/usb/sys/dev/usb/usb_busdma.c
==============================================================================
--- user/weongyo/usb/sys/dev/usb/usb_busdma.c	Sat Sep 25 18:27:29 2010	(r213174)
+++ user/weongyo/usb/sys/dev/usb/usb_busdma.c	Sat Sep 25 21:02:42 2010	(r213175)
@@ -102,7 +102,6 @@ usbd_get_page(struct usb_page_cache *pc,
 		return;
 	}
 #endif
-	/* Case 2 - Plain PIO */
 	res->buffer = USB_ADD_BYTES(pc->buffer, offset);
 	res->length = 0 - 1;
 #if USB_HAVE_BUSDMA


More information about the svn-src-user mailing list