Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=8f731f7d83d6c6a3eeb32cce79bfcddbf7fac8cc
Commit:     8f731f7d83d6c6a3eeb32cce79bfcddbf7fac8cc
Parent:     cb680c1be62e9898fc2ca2a89d9fdba7c84a5c81
Author:     Randy Dunlap <[EMAIL PROTECTED]>
AuthorDate: Thu Oct 18 23:39:28 2007 -0700
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Fri Oct 19 11:53:35 2007 -0700

    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 <[EMAIL PROTECTED]>
    Cc: Jens Axboe <[EMAIL PROTECTED]>
    Cc: WU Fengguang <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 Documentation/DocBook/kernel-api.tmpl |    2 +-
 block/ll_rw_blk.c                     |    2 +-
 include/linux/input.h                 |    4 +++-
 include/linux/list.h                  |    3 +--
 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 d3290c4..aa38cc5 100644
--- a/Documentation/DocBook/kernel-api.tmpl
+++ b/Documentation/DocBook/kernel-api.tmpl
@@ -46,7 +46,7 @@
 
      <sect1><title>Atomic and pointer manipulation</title>
 !Iinclude/asm-x86/atomic_32.h
-!Iinclude/asm-x86/unaligned_32.h
+!Iinclude/asm-x86/unaligned.h
      </sect1>
 
      <sect1><title>Delaying, scheduling, and timer routines</title>
diff --git a/block/ll_rw_blk.c b/block/ll_rw_blk.c
index 3935469..501edfa 100644
--- a/block/ll_rw_blk.c
+++ b/block/ll_rw_blk.c
@@ -3739,7 +3739,7 @@ EXPORT_SYMBOL(end_dequeued_request);
 
 /**
  * end_request - end I/O on the current segment of the request
- * @rq:                the request being processed
+ * @req:       the request being processed
  * @uptodate:  error value or 0/1 uptodate flag
  *
  * Description:
diff --git a/include/linux/input.h b/include/linux/input.h
index f30da6f..219d220 100644
--- a/include/linux/input.h
+++ b/include/linux/input.h
@@ -1005,13 +1005,15 @@ struct ff_effect {
  * @going_away: marks devices that are in a middle of unregistering and
  *     causes input_open_device*() fail with -ENODEV.
  * @dev: driver model's view of this device
+ * @cdev: union for struct device pointer
  * @h_list: list of input handles associated with the device. When
  *     accessing the list dev->mutex must be held
  * @node: used to place the device onto input_dev_list
  */
 struct input_dev {
-
+       /* private: */
        void *private;  /* do not use */
+       /* public: */
 
        const char *name;
        const char *phys;
diff --git a/include/linux/list.h b/include/linux/list.h
index b0cf013..75ce2cb 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,
                pos = n, n = pos->next)
 
 /**
- * list_for_each_prev_safe - iterate over a list backwards safe against removal
-                       of list entry
+ * list_for_each_prev_safe - iterate over a list backwards safe against 
removal of list entry
  * @pos:       the &struct list_head to use as a loop cursor.
  * @n:         another &struct list_head to use as temporary storage
  * @head:      the head for your list.
diff --git a/mm/filemap.c b/mm/filemap.c
index 9203663..5209e47 100644
--- a/mm/filemap.c
+++ b/mm/filemap.c
@@ -841,7 +841,7 @@ static void shrink_readahead_size_eio(struct file *filp,
 /**
  * do_generic_mapping_read - generic file read routine
  * @mapping:   address_space to be read
- * @_ra:       file's readahead state
+ * @ra:                file's readahead state
  * @filp:      the file to read
  * @ppos:      current file position
  * @desc:      read_descriptor
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to