diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2008-02-03 18:06:36 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-02-07 19:02:42 -0500 |
commit | 14f501a4b73c826574cf385f7872762ebcfac899 (patch) | |
tree | 96c9ee4532d7886e618033dd96448bca77f85439 /drivers/scsi/scsi.c | |
parent | 99cb813794edc930549059ba68093161a07eabee (diff) |
[SCSI] kernel-doc: fix scsi docbook
Add missing function parameter descriptions.
Make function short description fit on one line as required.
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/scsi.c')
-rw-r--r-- | drivers/scsi/scsi.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c index b35d19472caa..fecba05b4e77 100644 --- a/drivers/scsi/scsi.c +++ b/drivers/scsi/scsi.c | |||
@@ -969,9 +969,10 @@ void starget_for_each_device(struct scsi_target *starget, void *data, | |||
969 | EXPORT_SYMBOL(starget_for_each_device); | 969 | EXPORT_SYMBOL(starget_for_each_device); |
970 | 970 | ||
971 | /** | 971 | /** |
972 | * __starget_for_each_device - helper to walk all devices of a target | 972 | * __starget_for_each_device - helper to walk all devices of a target (UNLOCKED) |
973 | * (UNLOCKED) | ||
974 | * @starget: target whose devices we want to iterate over. | 973 | * @starget: target whose devices we want to iterate over. |
974 | * @data: parameter for callback @fn() | ||
975 | * @fn: callback function that is invoked for each device | ||
975 | * | 976 | * |
976 | * This traverses over each device of @starget. It does _not_ | 977 | * This traverses over each device of @starget. It does _not_ |
977 | * take a reference on the scsi_device, so the whole loop must be | 978 | * take a reference on the scsi_device, so the whole loop must be |