diff --git a/Documentation/DocBook/kernel-api.tmpl b/Documentation/DocBook/kernel-api.tmpl index d3290c46af51c0068148752d8b6ddab4d8bf88ca..aa38cc5692a005fe4a48f59bdabff3689865c6db 100644 --- a/Documentation/DocBook/kernel-api.tmpl +++ b/Documentation/DocBook/kernel-api.tmpl @@ -46,7 +46,7 @@ Atomic and pointer manipulation !Iinclude/asm-x86/atomic_32.h -!Iinclude/asm-x86/unaligned_32.h +!Iinclude/asm-x86/unaligned.h Delaying, scheduling, and timer routines diff --git a/block/ll_rw_blk.c b/block/ll_rw_blk.c index 3935469e366222c793a429f65461bf4a0becf62e..501edfa807a0f8b14886895633f04887dad7ad6b 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 f30da6fc08e3775dfa5b0945004711baae879a47..219d220d185bc9a82b2473ad18bdde6f0e6d160e 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 b0cf0135fe3edec0f7054e6602ca7f54572d592f..75ce2cb4ff6ebc92a8fcaa557a9bd7b6b9b9b1b6 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 920366399eed6a3adb409d58622c74db46abcd7a..5209e47b7fe39dba855e84ee9ca4d89283fd3d80 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