From owner-p4-projects@FreeBSD.ORG Wed Oct 11 13:38:11 2006 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 4A66816A4A7; Wed, 11 Oct 2006 13:38:11 +0000 (UTC) X-Original-To: perforce@FreeBSD.org Delivered-To: perforce@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 245EE16A40F for ; Wed, 11 Oct 2006 13:38:11 +0000 (UTC) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 537B643E36 for ; Wed, 11 Oct 2006 13:36:56 +0000 (GMT) (envelope-from hselasky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k9BDaf2S022726 for ; Wed, 11 Oct 2006 13:36:41 GMT (envelope-from hselasky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k9BDaeEm022717 for perforce@freebsd.org; Wed, 11 Oct 2006 13:36:40 GMT (envelope-from hselasky@FreeBSD.org) Date: Wed, 11 Oct 2006 13:36:40 GMT Message-Id: <200610111336.k9BDaeEm022717@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 107684 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: Wed, 11 Oct 2006 13:38:11 -0000 http://perforce.freebsd.org/chv.cgi?CH=107684 Change 107684 by hselasky@hselasky_mini_itx on 2006/10/11 13:36:17 Update documentation. Affected files ... .. //depot/projects/usb/src/sys/dev/usb/README#10 edit Differences ... ==== //depot/projects/usb/src/sys/dev/usb/README#10 (text+ko) ==== @@ -181,16 +181,17 @@ *------------------------------------------------------------------------*/ - The "type" field selects the USB pipe type. Valid values are: - UE_INTERRUPT, UE_CONTROL, UE_BULK, UE_ISOCHRONOUS. This field is - mandatory. + UE_INTERRUPT, UE_CONTROL, UE_BULK, UE_ISOCHRONOUS. The special + value UE_BULK_INTR will select BULK and INTERRUPT pipes. + This field is mandatory. - The "endpoint" field selects the USB endpoint number. A value of - 0xFF or "-1" will select the first matching endpoint. This field is - mandatory. + 0xFF, "-1" or "UE_ADDR_ANY" will select the first matching endpoint. + This field is mandatory. -- The "direction" field selects the USB endpoint direction. A value of 0xFF - or "-1" will select the first matching endpoint. Else valid values - are: "UE_DIR_IN" and "UE_DIR_OUT". This field is mandatory. +- The "direction" field selects the USB endpoint direction. A value of 0xFF, + "-1" or "UE_DIR_ANY" will select the first matching endpoint. Else valid + values are: "UE_DIR_IN" and "UE_DIR_OUT". This field is mandatory. - The "interval" field selects the interrupt interval, for "type" = UE_INTERRUPT. The "interval" is given in milliseconds. "0" selects the default @@ -261,3 +262,4 @@ panics. --HPS +