1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-25 07:49:18 +00:00

Move advise from DEVICE_PROBE.9 about where to probe children.

This commit is contained in:
Warner Losh 2004-04-11 06:37:50 +00:00
parent 4e67150a95
commit 565e9d9bc4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=128106

View File

@ -45,6 +45,13 @@ The probe method will have been called and will have indicated that
the device exists.
This routine should initialise the hardware and allocate other
system resources (such as devfs entries).
.Pp
Devices which implement busses should use this method to probe for
the existence of devices attached to the bus and add them as
children.
If this is combined with the use of
.Xr bus_generic_attach 9
the child devices will be automatically probed and attached.
.Sh RETURN VALUES
Zero is returned on success, otherwise an appropriate error is returned.
.Sh SEE ALSO