aboutsummaryrefslogtreecommitdiffstats
path: root/include/scsi/libfc.h
diff options
context:
space:
mode:
authorFam Zheng <famz@redhat.com>2017-01-13 11:40:01 +0800
committerMartin K. Petersen <martin.petersen@oracle.com>2017-01-16 15:43:02 -0500
commit67d35e70af9cabb663c827e03bc5c1e89b43db72 (patch)
treeef130aab90e74e98ca4599f12011a7d80d3aa059 /include/scsi/libfc.h
parentscsi: lpfc: avoid double free of resource identifiers (diff)
downloadlinux-dev-67d35e70af9cabb663c827e03bc5c1e89b43db72.tar.xz
linux-dev-67d35e70af9cabb663c827e03bc5c1e89b43db72.zip
scsi: libfc: Fix variable name in fc_set_wwpn
The parameter name should be wwpn instead of wwnn. Signed-off-by: Fam Zheng <famz@redhat.com> Acked-by: Johannes Thumshirn <jth@kernel.org> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'include/scsi/libfc.h')
-rw-r--r--include/scsi/libfc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/scsi/libfc.h b/include/scsi/libfc.h
index 96dd0b3f70d7..da5033dd8cbc 100644
--- a/include/scsi/libfc.h
+++ b/include/scsi/libfc.h
@@ -809,11 +809,11 @@ static inline void fc_set_wwnn(struct fc_lport *lport, u64 wwnn)
/**
* fc_set_wwpn() - Set the World Wide Port Name of a local port
* @lport: The local port whose WWPN is to be set
- * @wwnn: The new WWPN
+ * @wwpn: The new WWPN
*/
-static inline void fc_set_wwpn(struct fc_lport *lport, u64 wwnn)
+static inline void fc_set_wwpn(struct fc_lport *lport, u64 wwpn)
{
- lport->wwpn = wwnn;
+ lport->wwpn = wwpn;
}
/**