mirror of
https://github.com/torvalds/linux.git
synced 2024-11-20 02:51:44 +00:00
[SCSI] qla2xxx: Get VPD information from common location for CNA.
Signed-off-by: Giridhar Malavali <giridhar.malavali@qlogic.com> Signed-off-by: Saurav Kashyap <saurav.kashyap@qlogic.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com>
This commit is contained in:
parent
0b7e7c5330
commit
a865c50a64
@ -1388,9 +1388,7 @@ struct qla_flt_header {
|
||||
#define FLT_REG_FCP_PRIO_0 0x87
|
||||
#define FLT_REG_FCP_PRIO_1 0x88
|
||||
#define FLT_REG_FCOE_FW 0xA4
|
||||
#define FLT_REG_FCOE_VPD_0 0xA9
|
||||
#define FLT_REG_FCOE_NVRAM_0 0xAA
|
||||
#define FLT_REG_FCOE_VPD_1 0xAB
|
||||
#define FLT_REG_FCOE_NVRAM_1 0xAC
|
||||
|
||||
struct qla_flt_region {
|
||||
|
@ -897,7 +897,7 @@ struct ct6_dsd {
|
||||
#define FLT_REG_BOOT_CODE_82XX 0x78
|
||||
#define FLT_REG_FW_82XX 0x74
|
||||
#define FLT_REG_GOLD_FW_82XX 0x75
|
||||
#define FLT_REG_VPD_82XX 0x81
|
||||
#define FLT_REG_VPD_8XXX 0x81
|
||||
|
||||
#define FA_VPD_SIZE_82XX 0x400
|
||||
|
||||
|
@ -798,20 +798,8 @@ qla2xxx_get_flt_info(scsi_qla_host_t *vha, uint32_t flt_addr)
|
||||
case FLT_REG_BOOTLOAD_82XX:
|
||||
ha->flt_region_bootload = start;
|
||||
break;
|
||||
case FLT_REG_VPD_82XX:
|
||||
ha->flt_region_vpd = start;
|
||||
break;
|
||||
case FLT_REG_FCOE_VPD_0:
|
||||
if (!IS_QLA8031(ha))
|
||||
break;
|
||||
ha->flt_region_vpd_nvram = start;
|
||||
if (ha->flags.port0)
|
||||
ha->flt_region_vpd = start;
|
||||
break;
|
||||
case FLT_REG_FCOE_VPD_1:
|
||||
if (!IS_QLA8031(ha))
|
||||
break;
|
||||
if (!ha->flags.port0)
|
||||
case FLT_REG_VPD_8XXX:
|
||||
if (IS_CNA_CAPABLE(ha))
|
||||
ha->flt_region_vpd = start;
|
||||
break;
|
||||
case FLT_REG_FCOE_NVRAM_0:
|
||||
|
Loading…
Reference in New Issue
Block a user