diff options
author | Christian Brueffer <brueffer@FreeBSD.org> | 2011-08-27 22:08:01 +0000 |
---|---|---|
committer | Christian Brueffer <brueffer@FreeBSD.org> | 2011-08-27 22:08:01 +0000 |
commit | 04114c5ee3c11ded72b6092ea14f332897262d2a (patch) | |
tree | 08f386fc758b8d9c358719ac15491c749ce02d2c /share | |
parent | ae568477e7ceec9658e1ec561b0e885a0dd5f287 (diff) | |
download | src-04114c5ee3c11ded72b6092ea14f332897262d2a.tar.gz src-04114c5ee3c11ded72b6092ea14f332897262d2a.zip |
Remove information and MLINK for MULTI_DRIVER_MODULE().
The macro was removed in r121129 almost 8 years ago.
PR: 150244
Submitted by: Gireesh Nagabhushana <dngireesh@avrita.com>
Approved by: re (kib)
Notes
Notes:
svn path=/head/; revision=225220
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/DRIVER_MODULE.9 | 8 | ||||
-rw-r--r-- | share/man/man9/Makefile | 1 |
2 files changed, 1 insertions, 8 deletions
diff --git a/share/man/man9/DRIVER_MODULE.9 b/share/man/man9/DRIVER_MODULE.9 index 346177a6aabc..ca739452b366 100644 --- a/share/man/man9/DRIVER_MODULE.9 +++ b/share/man/man9/DRIVER_MODULE.9 @@ -28,7 +28,7 @@ .\" .\" $FreeBSD$ .\" -.Dd May 16, 2000 +.Dd August 27, 2011 .Dt DRIVER_MODULE 9 .Os .Sh NAME @@ -40,7 +40,6 @@ .In sys/bus.h .In sys/module.h .Fn DRIVER_MODULE name busname "driver_t driver" "devclass_t devclass" "modeventhand_t evh" "void *arg" -.Fn MULTI_DRIVER_MODULE name busname "driver_t drivers[]" "devclass_t devclass" "modeventhand_t evh" "void *arg" .Sh DESCRIPTION The .Fn DRIVER_MODULE @@ -96,11 +95,6 @@ The is unused at this time and should be a .Dv NULL pointer. -.Pp -.Fn MULTI_DRIVER_MODULE -is a special version of -.Fn DRIVER_MODULE , -which takes a list of drivers instead of a single driver instance. .Sh SEE ALSO .Xr device 9 , .Xr driver 9 , diff --git a/share/man/man9/Makefile b/share/man/man9/Makefile index 5f143c3c5b8e..8fb3305a8ab1 100644 --- a/share/man/man9/Makefile +++ b/share/man/man9/Makefile @@ -605,7 +605,6 @@ MLINKS+=domain.9 DOMAIN_SET.9 \ domain.9 pfctlinput2.9 \ domain.9 pffindproto.9 \ domain.9 pffindtype.9 -MLINKS+=DRIVER_MODULE.9 MULTI_DRIVER_MODULE.9 MLINKS+=EVENTHANDLER.9 EVENTHANDLER_DECLARE.9 \ EVENTHANDLER.9 EVENTHANDLER_DEREGISTER.9 \ EVENTHANDLER.9 eventhandler_deregister.9 \ |