summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Langer <alex@FreeBSD.org>2000-09-17 12:20:08 +0000
committerAlexander Langer <alex@FreeBSD.org>2000-09-17 12:20:08 +0000
commit77f3abec92386f77ab7b6885b585a4ba347dd63b (patch)
treeebffd3470eb741ee91dd1e2cbeb84b6731dfce72
parent72f8c78baf4d85c9e9d52d5e6a69ac4197c84143 (diff)
Notes
-rw-r--r--share/man/man9/driver.95
1 files changed, 4 insertions, 1 deletions
diff --git a/share/man/man9/driver.9 b/share/man/man9/driver.9
index e1d28cbbf09f..c33551c34165 100644
--- a/share/man/man9/driver.9
+++ b/share/man/man9/driver.9
@@ -83,7 +83,9 @@ interface.
.Pp
When a driver is registered with the system (by the
.Dv DRIVER_MODULE
-macro), it is added to the list of drivers contained in the devclass
+macro, see
+.Xr DRIVER_MODULE 9 ) ,
+it is added to the list of drivers contained in the devclass
of its parent bus type. For instance all PCI drivers would be
contained in the devclass named "pci" and all ISA drivers would be
in the devclass named "isa".
@@ -96,6 +98,7 @@ can optionally call extra initialisation code in the driver by
specifying an extra module event handler and argument as the last two
arguments.
.Sh SEE ALSO
+.Xr DRIVER_MODULE 9 ,
.Xr devclass 9 ,
.Xr device 9
.Sh AUTHORS