diff options
author | Krishna Gudipati <kgudipat@brocade.com> | 2012-09-21 20:27:23 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-10-07 06:28:06 -0400 |
commit | 7d0ecef3833a34059213072ee6dae4fdbf77e089 (patch) | |
tree | 37563c4b9fd203995c5b1f40a36780264a9f1f96 /drivers/scsi/bfa | |
parent | e6826c96ced7ea8161b2bae52686c99f6fbf8643 (diff) |
[SCSI] bfa: Firmware image naming convention update
- Modified the firmware naming convention to contain the
firmware image version (3.1.0.0).
- The new convention is <firmware-image>-<firmware-version>.bin
- The change will enforce loading only compatible firmware with this driver
and also avoid over-writing the old firmware image in-order to load new
version driver as the firmware names used to be the same.
Signed-off-by: Krishna Gudipati <kgudipat@brocade.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/bfa')
-rw-r--r-- | drivers/scsi/bfa/bfad.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/scsi/bfa/bfad.c b/drivers/scsi/bfa/bfad.c index c37494916a1a..895b0e516e07 100644 --- a/drivers/scsi/bfa/bfad.c +++ b/drivers/scsi/bfa/bfad.c | |||
@@ -63,9 +63,9 @@ int max_rport_logins = BFA_FCS_MAX_RPORT_LOGINS; | |||
63 | u32 bfi_image_cb_size, bfi_image_ct_size, bfi_image_ct2_size; | 63 | u32 bfi_image_cb_size, bfi_image_ct_size, bfi_image_ct2_size; |
64 | u32 *bfi_image_cb, *bfi_image_ct, *bfi_image_ct2; | 64 | u32 *bfi_image_cb, *bfi_image_ct, *bfi_image_ct2; |
65 | 65 | ||
66 | #define BFAD_FW_FILE_CB "cbfw.bin" | 66 | #define BFAD_FW_FILE_CB "cbfw-3.1.0.0.bin" |
67 | #define BFAD_FW_FILE_CT "ctfw.bin" | 67 | #define BFAD_FW_FILE_CT "ctfw-3.1.0.0.bin" |
68 | #define BFAD_FW_FILE_CT2 "ct2fw.bin" | 68 | #define BFAD_FW_FILE_CT2 "ct2fw-3.1.0.0.bin" |
69 | 69 | ||
70 | static u32 *bfad_load_fwimg(struct pci_dev *pdev); | 70 | static u32 *bfad_load_fwimg(struct pci_dev *pdev); |
71 | static void bfad_free_fwimg(void); | 71 | static void bfad_free_fwimg(void); |