aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/scsi/scsi.c5
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,
969EXPORT_SYMBOL(starget_for_each_device); 969EXPORT_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