diff options
author | 2025-07-31 13:33:11 +0200 | |
---|---|---|
committer | 2025-08-05 21:57:13 -0400 | |
commit | a59976116a01dad1c72460f9ed700bf4b3fdbebd (patch) | |
tree | 1dbaa0ccd782971baa3a865397ffa76f36d64f4d | |
parent | scsi: ufs: core: Fix interrupt handling for MCQ Mode (diff) | |
download | wireguard-linux-a59976116a01dad1c72460f9ed700bf4b3fdbebd.tar.xz wireguard-linux-a59976116a01dad1c72460f9ed700bf4b3fdbebd.zip |
scsi: lpfc: Fix wrong function reference in a comment
Function scsi_host_remove() doesn't exist, the actual function name is
scsi_remove_host().
Signed-off-by: Jean Delvare <jdelvare@suse.de>
Link: https://lore.kernel.org/r/20250731133311.52034cc4@endymion
Reviewed-by: Justin Tee <justin.tee@broadcom.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
-rw-r--r-- | drivers/scsi/lpfc/lpfc_vport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/lpfc/lpfc_vport.c b/drivers/scsi/lpfc/lpfc_vport.c index 2797aa75a689..aff6c9d5e7c2 100644 --- a/drivers/scsi/lpfc/lpfc_vport.c +++ b/drivers/scsi/lpfc/lpfc_vport.c @@ -666,7 +666,7 @@ lpfc_vport_delete(struct fc_vport *fc_vport) * Take early refcount for outstanding I/O requests we schedule during * delete processing for unreg_vpi. Always keep this before * scsi_remove_host() as we can no longer obtain a reference through - * scsi_host_get() after scsi_host_remove as shost is set to SHOST_DEL. + * scsi_host_get() after scsi_remove_host as shost is set to SHOST_DEL. */ if (!scsi_host_get(shost)) return VPORT_INVAL; |