diff options
author | Chad David <davidc@FreeBSD.org> | 2002-06-10 04:37:11 +0000 |
---|---|---|
committer | Chad David <davidc@FreeBSD.org> | 2002-06-10 04:37:11 +0000 |
commit | f7fcafe17a7a3f9d574da42f5e2f5789698dc473 (patch) | |
tree | 9a70cca9e1aa42912121a6232ace9c1f39f7991f /share/man/man9/DECLARE_MODULE.9 | |
parent | f97d6ce39676711f665b6788aab6cb2337f16028 (diff) |
The moduledata_t argument is not a pointer, and sysstem_sub_id should
be sysinit_sub_id.
PR: docs/34583
Approved by: murray
Notes
Notes:
svn path=/head/; revision=98077
Diffstat (limited to 'share/man/man9/DECLARE_MODULE.9')
-rw-r--r-- | share/man/man9/DECLARE_MODULE.9 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man9/DECLARE_MODULE.9 b/share/man/man9/DECLARE_MODULE.9 index d8b4edfc372b..1a24eecc4baf 100644 --- a/share/man/man9/DECLARE_MODULE.9 +++ b/share/man/man9/DECLARE_MODULE.9 @@ -64,7 +64,7 @@ is the name of the module, which will be used in the call to identify the module. .Pp .Fa data -is a pointer to the +is a .Vt moduledata_t structure, which contains two main items, the official name of the module name, which will be used in the @@ -77,7 +77,7 @@ is an argument directed to the .Fn SYSINIT macro. Valid values for this are contained in the -.Vt sysstem_sub_id +.Vt sysinit_sub_id enumeration (see .Pa kernel.h ) |