summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCraig Wilkie <craig@homerjay.homelinux.org>2003-01-05 04:55:47 -0800
committerLinus Torvalds <torvalds@home.transmeta.com>2003-01-05 04:55:47 -0800
commitff346687f65023e29f9c8571c606fe8bb54027e3 (patch)
tree2aee43010bed81f26b1f067becac5013b781d70b /include
parent97dcccc6b52c037b2cf2644486f7120c08976f9e (diff)
[PATCH] Fix errors making Docbook documentation
This modifies the following files: - Documentation/Docbook/Makefile - Fix dependencies generating parportbook which caused tex to choke. Documentation/Docbook/kernel-api.tmpl - Remove references to source files which do not contain kernel-doc comments, which caused "errors" in the generated documentation. include/linux/init.h - fix a trivial function comment to correct the generated documentation. This patch partially addresses one of the issues on the Kernel Janitor TODO list - "someone who knows DocBook, or is willing to learn, should go through and clean up Documentation/DocBook to kill all the warnings that occur during "make pdfdocs" and generally make the documents look nicer, and render smaller PDFs."
Diffstat (limited to 'include')
-rw-r--r--include/linux/init.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/init.h b/include/linux/init.h
index b7c6363478aa..a3ad7dd1a38f 100644
--- a/include/linux/init.h
+++ b/include/linux/init.h
@@ -111,7 +111,8 @@ struct obs_kernel_param {
*
* module_init() will either be called during do_initcalls (if
* builtin) or at module insertion time (if a module). There can only
- * be one per module. */
+ * be one per module.
+ */
#define module_init(x) __initcall(x);
/**