From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1765567AbXJRVNX (ORCPT ); Thu, 18 Oct 2007 17:13:23 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1759961AbXJRVNP (ORCPT ); Thu, 18 Oct 2007 17:13:15 -0400 Received: from rgminet01.oracle.com ([148.87.113.118]:32756 "EHLO rgminet01.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758027AbXJRVNN (ORCPT ); Thu, 18 Oct 2007 17:13:13 -0400 Date: Thu, 18 Oct 2007 14:12:15 -0700 From: Randy Dunlap To: lkml Cc: torvalds , akpm Subject: [PATCH] kernel-api docbook: fix content problems Message-Id: <20071018141215.06ebe3d3.randy.dunlap@oracle.com> Organization: Oracle Linux Eng. X-Mailer: Sylpheed 2.4.6 (GTK+ 2.8.10; x86_64-unknown-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Brightmail-Tracker: AAAAAQAAAAI= X-Brightmail-Tracker: AAAAAQAAAAI= X-Whitelist: TRUE X-Whitelist: TRUE Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org From: Randy Dunlap 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 --- 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(-) --- linux-2.6.23-git13.orig/Documentation/DocBook/kernel-api.tmpl +++ linux-2.6.23-git13/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 --- linux-2.6.23-git13.orig/include/linux/list.h +++ linux-2.6.23-git13/include/linux/list.h @@ -478,8 +478,7 @@ static inline void list_splice_init_rcu( 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. --- linux-2.6.23-git13.orig/mm/filemap.c +++ linux-2.6.23-git13/mm/filemap.c @@ -840,7 +840,7 @@ static void shrink_readahead_size_eio(st /** * 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 --- linux-2.6.23-git13.orig/block/ll_rw_blk.c +++ linux-2.6.23-git13/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: --- linux-2.6.23-git13.orig/include/linux/input.h +++ linux-2.6.23-git13/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;