diff options
author | alex <alex@FreeBSD.org> | 2001-03-18 16:54:39 +0000 |
---|---|---|
committer | alex <alex@FreeBSD.org> | 2001-03-18 16:54:39 +0000 |
commit | 267099bf5a83feb939591af9fe73944847efe11c (patch) | |
tree | 5deaaec3befe3de73571f412e75fb022ac2ebd69 /share | |
parent | 3d620f4db959d94aa8ba6c0034aae70404b1a508 (diff) | |
download | FreeBSD-src-267099bf5a83feb939591af9fe73944847efe11c.zip FreeBSD-src-267099bf5a83feb939591af9fe73944847efe11c.tar.gz |
Fix typo: s/DRIVERMODULE/DRIVER_MODULE/
PR: 25901
Submitted by: Maxime Henrion <mux@qualys.com>
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/DRIVER_MODULE.9 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man9/DRIVER_MODULE.9 b/share/man/man9/DRIVER_MODULE.9 index dbf5738..5cfaa9d 100644 --- a/share/man/man9/DRIVER_MODULE.9 +++ b/share/man/man9/DRIVER_MODULE.9 @@ -66,9 +66,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 DRIVERMODULE "foo" "isa" "foo_driver" "foo_devclass" "0" "0" ; +.Fn DRIVER_MODULE "foo" "isa" "foo_driver" "foo_devclass" "0" "0" ; .Pp -.Fn DRIVERMODULE "foo" "pci" "foo_driver" "foo_devclass" "0" "0" ; +.Fn DRIVER_MODULE "foo" "pci" "foo_driver" "foo_devclass" "0" "0" ; .Pp .Fa driver is the driver of type |