diff options
author | James Bottomley <James.Bottomley@HansenPartnership.com> | 2017-01-17 23:32:54 +0100 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2017-01-17 23:32:54 +0100 |
commit | 9208b75e048dda0d285904de9be7ab654a4b94fc (patch) | |
tree | b3af58ccd11b9ea186d1388be263b8ae0cb829b3 /include/scsi | |
parent | Merge remote-tracking branch 'mkp-scsi/4.10/scsi-fixes' into fixes (diff) | |
parent | scsi: mpt3sas: fix hang on ata passthrough commands (diff) | |
download | linux-9208b75e048dda0d285904de9be7ab654a4b94fc.tar.xz linux-9208b75e048dda0d285904de9be7ab654a4b94fc.zip |
Merge remote-tracking branch 'mkp-scsi/fixes' into fixes
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/libfc.h | 6 |
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; } /** |