From 9ad1b56ba83bbf0ab2142c6b167e17c17d28dacd Mon Sep 17 00:00:00 2001 From: Tomasz Zawadzki Date: Wed, 24 Nov 2021 10:04:33 +0100 Subject: [PATCH] doc: match spdk_scsi_dev_get_next_lun argument name Documentation for spdk_scsi_dev_get_next_lun now matches the function. include/spdk/scsi.h:239: error: argument 'lun' of command @param is not found in the argument list of spdk_scsi_dev_get_next_lun(struct spdk_scsi_lun *prev_lun) Signed-off-by: Tomasz Zawadzki Change-Id: I40512656cc215933fcd945429fac23318a083e09 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/10384 Community-CI: Broadcom CI Tested-by: SPDK CI Jenkins Reviewed-by: Aleksey Marchuk Reviewed-by: Shuhei Matsumoto Reviewed-by: Jim Harris --- include/spdk/scsi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdk/scsi.h b/include/spdk/scsi.h index 903e0b611..5293df301 100644 --- a/include/spdk/scsi.h +++ b/include/spdk/scsi.h @@ -236,7 +236,7 @@ struct spdk_scsi_lun *spdk_scsi_dev_get_first_lun(struct spdk_scsi_dev *dev); /** * Get the next logical unit of a SCSI device. * - * \param lun Previous logical unit. + * \param prev_lun Previous logical unit. * * \return the next logical unit of a SCSI device, or NULL if the prev_lun was the last. */