diff options
| author | Randy Dunlap <randy.dunlap@oracle.com> | 2007-10-19 02:39:28 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-19 14:53:35 -0400 |
| commit | 8f731f7d83d6c6a3eeb32cce79bfcddbf7fac8cc (patch) | |
| tree | 706de5d8801259311a7a3b3987bc3b6e6511637d | |
| parent | cb680c1be62e9898fc2ca2a89d9fdba7c84a5c81 (diff) | |
kernel-api docbook: fix content problems
Fix kernel-api docbook contents problems.
docproc: linux-2.6.23-git13/include/asm-x86/unaligned_32.h: No such file or directory
Warning(linux-2.6.23-git13//include/linux/list.h:482): bad line: of list entry
Warning(linux-2.6.23-git13//mm/filemap.c:864): No description found for parameter 'ra'
Warning(linux-2.6.23-git13//block/ll_rw_blk.c:3760): No description found for parameter 'req'
Warning(linux-2.6.23-git13//include/linux/input.h:1077): No description found for parameter 'private'
Warning(linux-2.6.23-git13//include/linux/input.h:1077): No description found for parameter 'cdev'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Cc: Jens Axboe <jens.axboe@oracle.com>
Cc: WU Fengguang <wfg@mail.ustc.edu.cn>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | Documentation/DocBook/kernel-api.tmpl | 2 | ||||
| -rw-r--r-- | block/ll_rw_blk.c | 2 | ||||
| -rw-r--r-- | include/linux/input.h | 4 | ||||
| -rw-r--r-- | include/linux/list.h | 3 | ||||
| -rw-r--r-- | mm/filemap.c | 2 |
5 files changed, 7 insertions, 6 deletions
diff --git a/Documentation/DocBook/kernel-api.tmpl b/Documentation/DocBook/kernel-api.tmpl index d3290c46af..aa38cc5692 100644 --- a/Documentation/DocBook/kernel-api.tmpl +++ b/Documentation/DocBook/kernel-api.tmpl | |||
| @@ -46,7 +46,7 @@ | |||
| 46 | 46 | ||
| 47 | <sect1><title>Atomic and pointer manipulation</title> | 47 | <sect1><title>Atomic and pointer manipulation</title> |
| 48 | !Iinclude/asm-x86/atomic_32.h | 48 | !Iinclude/asm-x86/atomic_32.h |
| 49 | !Iinclude/asm-x86/unaligned_32.h | 49 | !Iinclude/asm-x86/unaligned.h |
| 50 | </sect1> | 50 | </sect1> |
| 51 | 51 | ||
| 52 | <sect1><title>Delaying, scheduling, and timer routines</title> | 52 | <sect1><title>Delaying, scheduling, and timer routines</title> |
diff --git a/block/ll_rw_blk.c b/block/ll_rw_blk.c index 3935469e36..501edfa807 100644 --- a/block/ll_rw_blk.c +++ b/block/ll_rw_blk.c | |||
| @@ -3739,7 +3739,7 @@ EXPORT_SYMBOL(end_dequeued_request); | |||
| 3739 | 3739 | ||
| 3740 | /** | 3740 | /** |
| 3741 | * end_request - end I/O on the current segment of the request | 3741 | * end_request - end I/O on the current segment of the request |
| 3742 | * @rq: the request being processed | 3742 | * @req: the request being processed |
| 3743 | * @uptodate: error value or 0/1 uptodate flag | 3743 | * @uptodate: error value or 0/1 uptodate flag |
| 3744 | * | 3744 | * |
| 3745 | * Description: | 3745 | * Description: |
diff --git a/include/linux/input.h b/include/linux/input.h index f30da6fc08..219d220d18 100644 --- a/include/linux/input.h +++ b/include/linux/input.h | |||
| @@ -1005,13 +1005,15 @@ struct ff_effect { | |||
| 1005 | * @going_away: marks devices that are in a middle of unregistering and | 1005 | * @going_away: marks devices that are in a middle of unregistering and |
| 1006 | * causes input_open_device*() fail with -ENODEV. | 1006 | * causes input_open_device*() fail with -ENODEV. |
| 1007 | * @dev: driver model's view of this device | 1007 | * @dev: driver model's view of this device |
| 1008 | * @cdev: union for struct device pointer | ||
| 1008 | * @h_list: list of input handles associated with the device. When | 1009 | * @h_list: list of input handles associated with the device. When |
| 1009 | * accessing the list dev->mutex must be held | 1010 | * accessing the list dev->mutex must be held |
| 1010 | * @node: used to place the device onto input_dev_list | 1011 | * @node: used to place the device onto input_dev_list |
| 1011 | */ | 1012 | */ |
| 1012 | struct input_dev { | 1013 | struct input_dev { |
| 1013 | 1014 | /* private: */ | |
| 1014 | void *private; /* do not use */ | 1015 | void *private; /* do not use */ |
| 1016 | /* public: */ | ||
| 1015 | 1017 | ||
| 1016 | const char *name; | 1018 | const char *name; |
| 1017 | const char *phys; | 1019 | const char *phys; |
diff --git a/include/linux/list.h b/include/linux/list.h index b0cf0135fe..75ce2cb4ff 100644 --- a/include/linux/list.h +++ b/include/linux/list.h | |||
| @@ -478,8 +478,7 @@ static inline void list_splice_init_rcu(struct list_head *list, | |||
| 478 | pos = n, n = pos->next) | 478 | pos = n, n = pos->next) |
| 479 | 479 | ||
| 480 | /** | 480 | /** |
| 481 | * list_for_each_prev_safe - iterate over a list backwards safe against removal | 481 | * list_for_each_prev_safe - iterate over a list backwards safe against removal of list entry |
| 482 | of list entry | ||
| 483 | * @pos: the &struct list_head to use as a loop cursor. | 482 | * @pos: the &struct list_head to use as a loop cursor. |
| 484 | * @n: another &struct list_head to use as temporary storage | 483 | * @n: another &struct list_head to use as temporary storage |
| 485 | * @head: the head for your list. | 484 | * @head: the head for your list. |
diff --git a/mm/filemap.c b/mm/filemap.c index 920366399e..5209e47b7f 100644 --- a/mm/filemap.c +++ b/mm/filemap.c | |||
| @@ -841,7 +841,7 @@ static void shrink_readahead_size_eio(struct file *filp, | |||
| 841 | /** | 841 | /** |
| 842 | * do_generic_mapping_read - generic file read routine | 842 | * do_generic_mapping_read - generic file read routine |
| 843 | * @mapping: address_space to be read | 843 | * @mapping: address_space to be read |
| 844 | * @_ra: file's readahead state | 844 | * @ra: file's readahead state |
| 845 | * @filp: the file to read | 845 | * @filp: the file to read |
| 846 | * @ppos: current file position | 846 | * @ppos: current file position |
| 847 | * @desc: read_descriptor | 847 | * @desc: read_descriptor |
