From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755988Ab0EXAIR (ORCPT ); Sun, 23 May 2010 20:08:17 -0400 Received: from xenotime.net ([72.52.115.56]:40804 "HELO xenotime.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1755714Ab0EXAIE (ORCPT ); Sun, 23 May 2010 20:08:04 -0400 Date: Sun, 23 May 2010 17:02:30 -0700 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: "James E.J. Bottomley" Subject: [PATCH 7/9] scsi_scan.c: fix/convert functions to use kernel-doc Message-ID: <12746593503669@xenotime.net> In-Reply-To: <12746593501290@xenotime.net> X-Mailer: gregkh_patchbomb Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Randy Dunlap scsi_scan.c: fix incorrectly formatted kernel-doc notation & convert documentation of 2 functions into kernel-doc. Signed-off-by: Randy Dunlap --- drivers/scsi/scsi_scan.c | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) --- lnx-2634-docs.orig/drivers/scsi/scsi_scan.c +++ lnx-2634-docs/drivers/scsi/scsi_scan.c @@ -1221,7 +1221,7 @@ static void scsi_sequential_lun_scan(str } /** - * scsilun_to_int: convert a scsi_lun to an int + * scsilun_to_int - convert a scsi_lun to an int * @scsilun: struct scsi_lun to be converted. * * Description: @@ -1253,7 +1253,7 @@ int scsilun_to_int(struct scsi_lun *scsi EXPORT_SYMBOL(scsilun_to_int); /** - * int_to_scsilun: reverts an int into a scsi_lun + * int_to_scsilun - reverts an int into a scsi_lun * @lun: integer to be reverted * @scsilun: struct scsi_lun to be set. * @@ -1877,12 +1877,9 @@ void scsi_forget_host(struct Scsi_Host * spin_unlock_irqrestore(shost->host_lock, flags); } -/* - * Function: scsi_get_host_dev() - * - * Purpose: Create a scsi_device that points to the host adapter itself. - * - * Arguments: SHpnt - Host that needs a scsi_device +/** + * scsi_get_host_dev - Create a scsi_device that points to the host adapter itself + * @shost: Host that needs a scsi_device * * Lock status: None assumed. * @@ -1895,7 +1892,7 @@ void scsi_forget_host(struct Scsi_Host * * * Note - this device is not accessible from any high-level * drivers (including generics), which is probably not - * optimal. We can add hooks later to attach + * optimal. We can add hooks later to attach. */ struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost) { @@ -1921,18 +1918,13 @@ struct scsi_device *scsi_get_host_dev(st } EXPORT_SYMBOL(scsi_get_host_dev); -/* - * Function: scsi_free_host_dev() - * - * Purpose: Free a scsi_device that points to the host adapter itself. - * - * Arguments: SHpnt - Host that needs a scsi_device +/** + * scsi_free_host_dev - Free a scsi_device that points to the host adapter itself + * @sdev: Host device to be freed * * Lock status: None assumed. * * Returns: Nothing - * - * Notes: */ void scsi_free_host_dev(struct scsi_device *sdev) { --