From owner-p4-projects@FreeBSD.ORG Mon Jun 4 07:04:02 2007 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 09C6F16A46C; Mon, 4 Jun 2007 07:04:02 +0000 (UTC) X-Original-To: perforce@FreeBSD.org Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A949716A421 for ; Mon, 4 Jun 2007 07:04:01 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 9AFA413C4B9 for ; Mon, 4 Jun 2007 07:04:01 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l54741xn031975 for ; Mon, 4 Jun 2007 07:04:01 GMT (envelope-from hselasky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l54741P3031963 for perforce@freebsd.org; Mon, 4 Jun 2007 07:04:01 GMT (envelope-from hselasky@FreeBSD.org) Date: Mon, 4 Jun 2007 07:04:01 GMT Message-Id: <200706040704.l54741P3031963@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky To: Perforce Change Reviews Cc: Subject: PERFORCE change 120881 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Jun 2007 07:04:02 -0000 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 }, };