aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/lpfc
diff options
context:
space:
mode:
authorFelipe Pena <felipensp@gmail.com>2013-10-18 19:15:37 -0400
committerJames Bottomley <JBottomley@Parallels.com>2013-12-19 10:39:03 -0500
commitb28d108b7f9f3b51574edbf90505c467f1066c6e (patch)
treef567fc8bfcd3c7853f697f90ddd9d85832f7509a /drivers/scsi/lpfc
parent11f8a7b31f2140b0dc164bb484281235ffbe51d3 (diff)
[SCSI] lpfc: Fix wrong assignment in lpfc_debugfs.c
On lpfc_debugfs_initialize function the dumpHostSlim member setup happens when 'phba->sli_rev < LPFC_SLI_REV4' is true, however when it is false NULL has been assigned to debug_dumpHBASlim instead of debug_dumpHostSlim. Signed-off-by: Felipe Pena <felipensp@gmail.com> Acked-by: James Smart <james.smart@emulex.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/lpfc')
-rw-r--r--drivers/scsi/lpfc/lpfc_debugfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/lpfc/lpfc_debugfs.c b/drivers/scsi/lpfc/lpfc_debugfs.c
index 60084e6ad2f2..b800cc952ca6 100644
--- a/drivers/scsi/lpfc/lpfc_debugfs.c
+++ b/drivers/scsi/lpfc/lpfc_debugfs.c
@@ -4001,7 +4001,7 @@ lpfc_debugfs_initialize(struct lpfc_vport *vport)
4001 goto debug_failed; 4001 goto debug_failed;
4002 } 4002 }
4003 } else 4003 } else
4004 phba->debug_dumpHBASlim = NULL; 4004 phba->debug_dumpHostSlim = NULL;
4005 4005
4006 /* Setup dumpData */ 4006 /* Setup dumpData */
4007 snprintf(name, sizeof(name), "dumpData"); 4007 snprintf(name, sizeof(name), "dumpData");