From owner-svn-src-head@freebsd.org Sat Apr 23 11:04:46 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81BB9B1A42D; Sat, 23 Apr 2016 11:04:46 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 36B591FEB; Sat, 23 Apr 2016 11:04:46 +0000 (UTC) (envelope-from brueffer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3NB4jFK035333; Sat, 23 Apr 2016 11:04:45 GMT (envelope-from brueffer@FreeBSD.org) Received: (from brueffer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3NB4jmP035331; Sat, 23 Apr 2016 11:04:45 GMT (envelope-from brueffer@FreeBSD.org) Message-Id: <201604231104.u3NB4jmP035331@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brueffer set sender to brueffer@FreeBSD.org using -f From: Christian Brueffer Date: Sat, 23 Apr 2016 11:04:45 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r298511 - head/share/man/man9 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Apr 2016 11:04:46 -0000 Author: brueffer Date: Sat Apr 23 11:04:45 2016 New Revision: 298511 URL: https://svnweb.freebsd.org/changeset/base/298511 Log: Improve upon r296618 to keep lines < 80 characters. Pointed out by: jhb Sponsored by: Essen Hackathon 2016 Modified: head/share/man/man9/bus_adjust_resource.9 head/share/man/man9/bus_alloc_resource.9 Modified: head/share/man/man9/bus_adjust_resource.9 ============================================================================== --- head/share/man/man9/bus_adjust_resource.9 Sat Apr 23 10:10:29 2016 (r298510) +++ head/share/man/man9/bus_adjust_resource.9 Sat Apr 23 11:04:45 2016 (r298511) @@ -27,7 +27,7 @@ .\" .\" $FreeBSD$ .\" -.Dd March 10, 2016 +.Dd April 23, 2016 .Dt BUS_ADJUST_RESOURCE 9 .Os .Sh NAME @@ -41,7 +41,10 @@ .In sys/rman.h .In machine/resource.h .Ft int -.Fn bus_adjust_resource "device_t dev" "int type" "struct resource *r" "rman_res_t start" "rman_res_t end" +.Fo bus_adjust_resource +.Fa "device_t dev" "int type" "struct resource *r" +.Fa "rman_res_t start" "rman_res_t end" +.Fc .Sh DESCRIPTION This function is used to ask the parent bus to adjust the resource range assigned to an allocated resource. Modified: head/share/man/man9/bus_alloc_resource.9 ============================================================================== --- head/share/man/man9/bus_alloc_resource.9 Sat Apr 23 10:10:29 2016 (r298510) +++ head/share/man/man9/bus_alloc_resource.9 Sat Apr 23 11:04:45 2016 (r298511) @@ -28,7 +28,7 @@ .\" .\" $FreeBSD$ .\" -.Dd March 10, 2016 +.Dd April 23, 2016 .Dt BUS_ALLOC_RESOURCE 9 .Os .Sh NAME @@ -51,7 +51,9 @@ .Ft struct resource * .Fn bus_alloc_resource_any "device_t dev" "int type" "int *rid" "u_int flags" .Ft struct resource * -.Fn bus_alloc_resource_anywhere "device_t dev" "int type" "int *rid" "rman_res_t count" "u_int flags" +.Fo bus_alloc_resource_anywhere +.Fa "device_t dev" "int type" "int *rid" "rman_res_t count" "u_int flags" +.Fc .Sh DESCRIPTION This is an easy interface to the resource-management functions. It hides the indirection through the parent's method table.