diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2005-11-07 04:01:05 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 10:53:55 -0500 |
commit | 8f2709b542c96a2b1910ca5f2fe27dc9023b1225 (patch) | |
tree | 2c1b38ee2b0f203322f01e2816644d16b63a71f1 /include/linux/fs.h | |
parent | 6c8bec6d5f24b01c53b792b06a645e78d482020d (diff) |
[PATCH] kernel-doc: fix some kernel-api warnings
Fix various warnings in kernel-doc:
Warning(linux-2614-rc4//include/linux/net.h:89): Enum value 'SOCK_DCCP' not described in enum 'sock_type'
usercopy.c: should use !E instead of !I for exported symbols:
Warning(linux-2614-rc4//arch/i386/lib/usercopy.c): no structured comments found
fs.h does not need to use !E since it has no exported symbols:
Warning(linux-2614-rc4//include/linux/fs.h:1182): No description found for parameter 'find_exported_dentry'
Warning(linux-2614-rc4//include/linux/fs.h): no structured comments found
irq/manage.c should use !E for its exported symbols:
Warning(linux-2614-rc4//kernel/irq/manage.c): no structured comments found
macmodes.c should use !E for its exported symbols:
Warning(linux-2614-rc4//drivers/video/macmodes.c): no structured comments found
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/fs.h')
-rw-r--r-- | include/linux/fs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 0c89fc9481a8..9a593ef262ef 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -1096,6 +1096,8 @@ int sync_inode(struct inode *inode, struct writeback_control *wbc); | |||
1096 | * @get_name: find the name for a given inode in a given directory | 1096 | * @get_name: find the name for a given inode in a given directory |
1097 | * @get_parent: find the parent of a given directory | 1097 | * @get_parent: find the parent of a given directory |
1098 | * @get_dentry: find a dentry for the inode given a file handle sub-fragment | 1098 | * @get_dentry: find a dentry for the inode given a file handle sub-fragment |
1099 | * @find_exported_dentry: | ||
1100 | * set by the exporting module to a standard helper function. | ||
1099 | * | 1101 | * |
1100 | * Description: | 1102 | * Description: |
1101 | * The export_operations structure provides a means for nfsd to communicate | 1103 | * The export_operations structure provides a means for nfsd to communicate |