Date: Mon, 4 Jun 2007 07:04:01 GMT From: Hans Petter Selasky <hselasky@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 120881 for review Message-ID: <200706040704.l54741P3031963@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=120881 Change 120881 by hselasky@hselasky_mini_itx on 2007/06/04 07:03:55 Add more comments to wMaxPacketSize of root control endpoints, and adjust the value where needed. Affected files ... .. //depot/projects/usb/src/sys/dev/usb/ehci.c#32 edit .. //depot/projects/usb/src/sys/dev/usb/ohci.c#26 edit .. //depot/projects/usb/src/sys/dev/usb/uhci.c#26 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/ehci.c#32 (text+ko) ==== @@ -3116,7 +3116,7 @@ UDESC_ENDPOINT, UE_DIR_IN | EHCI_INTR_ENDPT, UE_INTERRUPT, - {8, 0}, /* max packet */ + {8, 0}, /* max packet (63 ports) */ 255 }, }; ==== //depot/projects/usb/src/sys/dev/usb/ohci.c#26 (text+ko) ==== @@ -2225,7 +2225,7 @@ UDESC_ENDPOINT, UE_DIR_IN | OHCI_INTR_ENDPT, UE_INTERRUPT, - {8, 0}, /* max packet */ + {32, 0}, /* max packet (255 ports) */ 255 }, }; ==== //depot/projects/usb/src/sys/dev/usb/uhci.c#26 (text+ko) ==== @@ -2353,7 +2353,7 @@ UDESC_ENDPOINT, UE_DIR_IN | UHCI_INTR_ENDPT, UE_INTERRUPT, - {8}, + {8, 0}, /* max packet (63 ports) */ 255 }, };
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200706040704.l54741P3031963>