PERFORCE change 120881 for review
Hans Petter Selasky
hselasky at FreeBSD.org
Mon Jun 4 07:04:02 UTC 2007
http://perforce.freebsd.org/chv.cgi?CH=120881
Change 120881 by hselasky at 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
},
};
More information about the p4-projects
mailing list