aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Brueffer <brueffer@FreeBSD.org>2016-03-10 18:21:03 +0000
committerChristian Brueffer <brueffer@FreeBSD.org>2016-03-10 18:21:03 +0000
commit7daa71cca42d520b17a8a7ea2460fa60a0eedac7 (patch)
tree287187adfced7c1fdf494470f7735c796eaa4e8b
parentee7f4d8187356cd961ca8a7a5349f3e28e9225ea (diff)
downloadsrc-7daa71cca42d520b17a8a7ea2460fa60a0eedac7.tar.gz
src-7daa71cca42d520b17a8a7ea2460fa60a0eedac7.zip
Fix mdoc markup.
Notes
Notes: svn path=/head/; revision=296618
-rw-r--r--share/man/man9/bus_adjust_resource.95
-rw-r--r--share/man/man9/bus_alloc_resource.96
2 files changed, 4 insertions, 7 deletions
diff --git a/share/man/man9/bus_adjust_resource.9 b/share/man/man9/bus_adjust_resource.9
index 6f561b938f37..681faf61ebb4 100644
--- a/share/man/man9/bus_adjust_resource.9
+++ b/share/man/man9/bus_adjust_resource.9
@@ -27,7 +27,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd April 29, 2011
+.Dd March 10, 2016
.Dt BUS_ADJUST_RESOURCE 9
.Os
.Sh NAME
@@ -41,8 +41,7 @@
.In sys/rman.h
.In machine/resource.h
.Ft int
-.Fo bus_adjust_resource
-.Fa "device_t dev" "int type" "struct resource *r" "rman_res_t start" "rman_res_t end"
+.Fn bus_adjust_resource "device_t dev" "int type" "struct resource *r" "rman_res_t start" "rman_res_t end"
.Sh DESCRIPTION
This function is used to ask the parent bus to adjust the resource range
assigned to an allocated resource.
diff --git a/share/man/man9/bus_alloc_resource.9 b/share/man/man9/bus_alloc_resource.9
index 92c589d6f81a..c8418b0a3953 100644
--- a/share/man/man9/bus_alloc_resource.9
+++ b/share/man/man9/bus_alloc_resource.9
@@ -28,7 +28,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd May 18, 2000
+.Dd March 10, 2016
.Dt BUS_ALLOC_RESOURCE 9
.Os
.Sh NAME
@@ -50,10 +50,8 @@
.Fc
.Ft struct resource *
.Fn bus_alloc_resource_any "device_t dev" "int type" "int *rid" "u_int flags"
-.Fc
.Ft struct resource *
-.Fn bus_alloc_resource_anywhere
-.Fa "device_t dev" "int type" "int *rid" "rman_res_t count" "u_int flags"
+.Fn bus_alloc_resource_anywhere "device_t dev" "int type" "int *rid" "rman_res_t count" "u_int flags"
.Sh DESCRIPTION
This is an easy interface to the resource-management functions.
It hides the indirection through the parent's method table.