diff options
author | Warner Losh <imp@FreeBSD.org> | 2003-03-30 00:30:29 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2003-03-30 00:30:29 +0000 |
commit | 4e6e1b86464c771ddb06abe78df19c84ba74d624 (patch) | |
tree | 6d5312affece89433c32b2f04ed5baebd191c4dc /share/man/man9/bus_activate_resource.9 | |
parent | d082b089048eb6b076e84cf9750643f25c00d335 (diff) |
rid is not a pointer to int, but rather just a plain int.
Notes
Notes:
svn path=/head/; revision=112832
Diffstat (limited to 'share/man/man9/bus_activate_resource.9')
-rw-r--r-- | share/man/man9/bus_activate_resource.9 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man9/bus_activate_resource.9 b/share/man/man9/bus_activate_resource.9 index 74482c8affbe..ce5f14317d12 100644 --- a/share/man/man9/bus_activate_resource.9 +++ b/share/man/man9/bus_activate_resource.9 @@ -42,9 +42,9 @@ .In sys/rman.h .In machine/resource.h .Ft int -.Fn bus_activate_resource "device_t dev" "int type" "int *rid" "struct resource *r" +.Fn bus_activate_resource "device_t dev" "int type" "int rid" "struct resource *r" .Ft int -.Fn bus_deactivate_resource "device_t dev" "int type" "int *rid" "struct resource *r" +.Fn bus_deactivate_resource "device_t dev" "int type" "int rid" "struct resource *r" .Sh DESCRIPTION Activates or deactivates a previously allocated resource. In general, resources must be activated before they can be accessed by |