diff options
author | phantom <phantom@FreeBSD.org> | 1999-09-04 12:37:21 +0000 |
---|---|---|
committer | phantom <phantom@FreeBSD.org> | 1999-09-04 12:37:21 +0000 |
commit | 890a9302c422818b037cb8d848f5e590f2a6298a (patch) | |
tree | af1604bc3b72fa31b87a6ee90adf11718a90729f /share | |
parent | c8a2ac644d5eaa2224006a4d5efdeabd75b14aaa (diff) | |
download | FreeBSD-src-890a9302c422818b037cb8d848f5e590f2a6298a.zip FreeBSD-src-890a9302c422818b037cb8d848f5e590f2a6298a.tar.gz |
Replace stale references to device_add_child_after(9) with
device_child_add_ordered(9)
PR: 13210
Submitted by: Alexey Zelkin <phantom@cris.net>
Reviewed by: mpp
Forgotten by: dfr
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/Makefile | 2 | ||||
-rw-r--r-- | share/man/man9/device.9 | 2 | ||||
-rw-r--r-- | share/man/man9/device_add_child.9 | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man9/Makefile b/share/man/man9/Makefile index 4283f34..b918f1f 100644 --- a/share/man/man9/Makefile +++ b/share/man/man9/Makefile @@ -79,7 +79,7 @@ MLINKS+=timeout.9 untimeout.9 MLINKS+=vref.9 VREF.9 MLINKS+=vslock.9 vsunlock.9 -MLINKS+=device_add_child.9 device_add_child_after.9 +MLINKS+=device_add_child.9 device_add_child_ordered.9 MLINKS+=device_enable.9 device_disable.9 MLINKS+=device_enable.9 device_is_enabled.9 MLINKS+=device_get_state.9 device_busy.9 diff --git a/share/man/man9/device.9 b/share/man/man9/device.9 index e5792da..dae14d2 100644 --- a/share/man/man9/device.9 +++ b/share/man/man9/device.9 @@ -55,7 +55,7 @@ have a parent (see .Xr device_get_parent 9 ). In addition, any device can have children attached to it (see .Xr device_add_child 9 , -.Xr device_add_child_after 9 , +.Xr device_add_child_ordered 9 , .Xr device_find_child 9 , and .Xr device_delete_child 9 ). diff --git a/share/man/man9/device_add_child.9 b/share/man/man9/device_add_child.9 index b705d00..8dd2341 100644 --- a/share/man/man9/device_add_child.9 +++ b/share/man/man9/device_add_child.9 @@ -33,7 +33,7 @@ .Os FreeBSD .Sh NAME .Nm device_add_child , -.Nm device_add_child_after +.Nm device_add_child_ordered .Nd add a new device as a child of an existing device .Sh SYNOPSIS .Fd #include <sys/param.h> |