diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2005-11-07 01:01:07 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 07:53:55 -0800 |
commit | b8887e6e8c04bcefb512cdb08fc7e9c310ac847e (patch) | |
tree | f8dcfee2314ad0c1998e70449fdd814e675cf90a /include/linux/kernel.h | |
parent | 1e5d533142c1c178a31d4cc81837eb078f9269bc (diff) | |
download | op-kernel-dev-b8887e6e8c04bcefb512cdb08fc7e9c310ac847e.zip op-kernel-dev-b8887e6e8c04bcefb512cdb08fc7e9c310ac847e.tar.gz |
[PATCH] kernel-docs: fix kernel-doc format problems
Convert to proper kernel-doc format.
Some have extra blank lines (not allowed immed. after the function name)
or need blank lines (after all parameters). Function summary must be only
one line.
Colon (":") in a function description does weird things (causes kernel-doc
to think that it's a new section head sadly).
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/kernel.h')
-rw-r--r-- | include/linux/kernel.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index f1925cc..b641948 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h @@ -266,7 +266,6 @@ extern void dump_stack(void); /** * container_of - cast a member of a structure out to the containing structure - * * @ptr: the pointer to the member. * @type: the type of the container struct this is embedded in. * @member: the name of the member within the struct. |