aboutsummaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorAlexander Langer <alex@FreeBSD.org>2001-07-13 16:10:39 +0000
committerAlexander Langer <alex@FreeBSD.org>2001-07-13 16:10:39 +0000
commit4dad593a95ce6075979621b4af7de4dcd70e4cf5 (patch)
treedb5d0885891ae7d0351055d0625e572328006410 /share
parent76dada465bcc00222bf38812b0376e0225762e4b (diff)
Notes
Diffstat (limited to 'share')
-rw-r--r--share/man/man9/DRIVER_MODULE.98
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man9/DRIVER_MODULE.9 b/share/man/man9/DRIVER_MODULE.9
index c69b3958a159..2aa0b794c9de 100644
--- a/share/man/man9/DRIVER_MODULE.9
+++ b/share/man/man9/DRIVER_MODULE.9
@@ -47,7 +47,7 @@ macro declares a kernel driver.
expands to the real driver declaration, where the phrase
.Fa name
is used as the naming prefix for the driver and its functions.
-Note that it supplied as plain text, and not a
+Note that it is supplied as plain text, and not a
.Li char
or
.Li char * .
@@ -67,9 +67,9 @@ which is a pretty clean way of making front ends for different cards
using the same driver on the same or different busses.
For example, the following is allowed:
.Pp
-.Fn DRIVER_MODULE foo isa foo_driver foo_devclass 0 0 ;
+.Fn DRIVER_MODULE foo isa foo_driver foo_devclass NULL NULL ;
.Pp
-.Fn DRIVER_MODULE foo pci foo_driver foo_devclass 0 0 ;
+.Fn DRIVER_MODULE foo pci foo_driver foo_devclass NULL NULL ;
.Pp
.Fa driver
is the driver of type
@@ -81,7 +81,7 @@ two most important parts of the call to
The
.Fa devclass
argument contains the kernel-internal information about the device,
-which will be used wthin the kernel driver module.
+which will be used within the kernel driver module.
.Pp
The
.Fa evh