History log of /freebsd-9.3-release/share/man/man9/BUS_PRINT_CHILD.9
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
# 267654 19-Jun-2014 gjb

Copy stable/9 to releng/9.3 as part of the 9.3-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation

# 225736 22-Sep-2011 kensmith

Copy head to stable/9 as part of 9.0-RELEASE release cycle.

Approved by: re (implicit)


# 140561 21-Jan-2005 ru

Sort sections.


# 139767 06-Jan-2005 keramida

Use .Fn function_name.

MFC after: 3 days


# 121414 23-Oct-2003 hmp

Mdoc Janitor:

* Use 'manual' instead of 'man' for consistency.


# 121379 22-Oct-2003 hmp

Mdoc Janitor:

* Fix hard sentence breaks.

* Correct use of a period in DELAY(9).


# 84306 01-Oct-2001 ru

mdoc(7) police: Use the new .In macro for #include statements.


# 79727 14-Jul-2001 schweikh

Removed whitespace at end-of-line; no content changes. I simply did
cd src/share; find man[1-9] -type f|xargs perl -pi -e 's/[ \t]+$//'

BTW, what editors are the culprits? I'm using vim and it shows
me whitespace at EOL in troff files with a thick blue block...

Reviewed by: Silence from cvs diff -b
MFC after: 7 days


# 79538 10-Jul-2001 ru

mdoc(7) police: removed HISTORY info from the .Os call.


# 79454 09-Jul-2001 dd

mdoc(7) police: remove extraneous .Pp before and/or after .Sh.


# 70017 14-Dec-2000 ru

mdoc(7) police: removed duplicate .Os calls.


# 60673 17-May-2000 chris

Replace a manual.section file reference with a proper mdoc(7) .Xr
reference.

PR: 18625
Submitted by: Alexander Langer <alex@cichlids.com>


# 50476 27-Aug-1999 peter

$Id$ -> $FreeBSD$


# 49843 15-Aug-1999 mpp

Remove a self-referencing xref in the SEE ALSO section.


# 49831 15-Aug-1999 mpp

Various man page cleanup:

- Sort xrefs
- FreeBSD.ORG -> FreeBSD.org
- Be consistent with section names as outlined in mdoc(7).
- Other misc mdoc cleanup.

PR: doc/13144
Submitted by: Alexey M. Zelkin <phantom@cris.net>


# 49195 28-Jul-1999 mdodd

Alter the behavior of sys/kern/subr_bus.c:device_print_child()

- device_print_child() either lets the BUS_PRINT_CHILD
method produce the entire device announcement message or
it prints "foo0: not found\n"

Alter sys/kern/subr_bus.c:bus_generic_print_child() to take on
the previous behavior of device_print_child() (printing the
"foo0: <FooDevice 1.1>" bit of the announce message.)

Provide bus_print_child_header() and bus_print_child_footer()
to actually print the output for bus_generic_print_child().
These functions should be used whenever possible (unless you can
just use bus_generic_print_child())

The BUS_PRINT_CHILD method now returns int instead of void.

Modify everything else that defines or uses a BUS_PRINT_CHILD
method to comply with the above changes.

- Devices are 'on' a bus, not 'at' it.
- If a custom BUS_PRINT_CHILD method does the same thing
as bus_generic_print_child(), use bus_generic_print_child()
- Use device_get_nameunit() instead of both
device_get_name() and device_get_unit()
- All BUS_PRINT_CHILD methods return the number of
characters output.

Reviewed by: dfr, peter


# 44523 06-Mar-1999 bde

Fixed wrong function prototype(s) in synopsis.


# 38786 03-Sep-1998 dfr

Add manpages for the new device framework.