diff options
author | mdodd <mdodd@FreeBSD.org> | 2003-03-25 04:32:52 +0000 |
---|---|---|
committer | mdodd <mdodd@FreeBSD.org> | 2003-03-25 04:32:52 +0000 |
commit | fe36e1c8471f74482dc7a33db891daa0327c8c95 (patch) | |
tree | a41ee37f5ab41cb0e7732b66463fcd6b657490aa /sys/kern | |
parent | ac62ea46fc515e25874659c70e765453cdd4b672 (diff) | |
download | FreeBSD-src-fe36e1c8471f74482dc7a33db891daa0327c8c95.zip FreeBSD-src-fe36e1c8471f74482dc7a33db891daa0327c8c95.tar.gz |
Give print_child a default method.
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/bus_if.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/bus_if.m b/sys/kern/bus_if.m index 0529220..81d05ea 100644 --- a/sys/kern/bus_if.m +++ b/sys/kern/bus_if.m @@ -54,7 +54,7 @@ CODE { METHOD int print_child { device_t dev; device_t child; -}; +} DEFAULT bus_generic_print_child; # # Called for each child device that |