From owner-svn-src-all@freebsd.org Fri May 25 00:10:06 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20507F6E323; Fri, 25 May 2018 00:10:06 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 143376AA00; Fri, 25 May 2018 00:10:04 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (localhost [127.0.0.1]) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3) with ESMTP id w4P0A3T9042918; Thu, 24 May 2018 17:10:03 -0700 (PDT) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: (from freebsd@localhost) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3/Submit) id w4P0A3B7042917; Thu, 24 May 2018 17:10:03 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <201805250010.w4P0A3B7042917@pdx.rh.CN85.dnsmgr.net> Subject: Re: svn commit: r334173 - in head: share/man/man4 sys/dev/usb/template In-Reply-To: <201805241802.w4OI23qd016042@repo.freebsd.org> To: Edward Tomasz Napierala Date: Thu, 24 May 2018 17:10:03 -0700 (PDT) CC: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Reply-To: rgrimes@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 May 2018 00:10:06 -0000 [ Charset UTF-8 unsupported, converting... ] > Author: trasz > Date: Thu May 24 18:02:02 2018 > New Revision: 334173 > URL: https://svnweb.freebsd.org/changeset/base/334173 > > Log: > Clarify that USB bus power consumption is measured in mA at 5V. Thank you. > > MFC after: 2 weeks > Sponsored by: The FreeBSD Foundation > > Modified: > head/share/man/man4/usb_template.4 > head/sys/dev/usb/template/usb_template.c > > Modified: head/share/man/man4/usb_template.4 > ============================================================================== > --- head/share/man/man4/usb_template.4 Thu May 24 17:54:08 2018 (r334172) > +++ head/share/man/man4/usb_template.4 Thu May 24 18:02:02 2018 (r334173) > @@ -23,7 +23,7 @@ > .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF > .\" SUCH DAMAGE. > .\" > -.Dd May 23, 2018 > +.Dd May 24, 2018 > .Dt USB_TEMPLATE 4 > .Os > . > @@ -101,7 +101,7 @@ tunables: > Currently selected template. > Set to -1 to make the device disappear from the USB host point of view. > .It Va hw.usb.template_power > -USB bus power consumption in mA. > +USB bus power consumption in mA at 5V. > Must be between 0 and 500. > Setting to 0 marks the device as self-powered. > Defaults to 500mA. > > Modified: head/sys/dev/usb/template/usb_template.c > ============================================================================== > --- head/sys/dev/usb/template/usb_template.c Thu May 24 17:54:08 2018 (r334172) > +++ head/sys/dev/usb/template/usb_template.c Thu May 24 18:02:02 2018 (r334173) > @@ -120,7 +120,7 @@ SYSCTL_NODE(_hw_usb, OID_AUTO, templates, CTLFLAG_RW, > SYSCTL_PROC(_hw_usb, OID_AUTO, template_power, > CTLTYPE_INT | CTLFLAG_RWTUN | CTLFLAG_MPSAFE, > NULL, 0, sysctl_hw_usb_template_power, > - "I", "USB bus power consumption in mA"); > + "I", "USB bus power consumption in mA at 5V"); > > static int usb_template_power = 500; /* 500mA */ > > > -- Rod Grimes rgrimes@freebsd.org