[SCSI] qla2xxx: Skip FDMI registration on ISP21xx/22xx parts.

Firmware does not have the facilities to issue management server
IOCBs.

Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>

authored by

Andrew Vasquez and committed by
James Bottomley
031e134e 5de1f70f

+6
+6
drivers/scsi/qla2xxx/qla_gs.c
··· 1661 { 1662 int rval; 1663 1664 rval = qla2x00_mgmt_svr_login(ha); 1665 if (rval) 1666 return rval;
··· 1661 { 1662 int rval; 1663 1664 + if (IS_QLA2100(ha) || IS_QLA2200(ha)) { 1665 + DEBUG2(printk("scsi(%ld): FDMI unsupported on " 1666 + "ISP2100/ISP2200.\n", ha->host_no)); 1667 + return QLA_SUCCESS; 1668 + } 1669 + 1670 rval = qla2x00_mgmt_svr_login(ha); 1671 if (rval) 1672 return rval;