diff options
author | Anil Veerabhadrappa <anilgv@broadcom.com> | 2009-12-07 14:39:33 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2009-12-10 10:45:55 -0500 |
commit | 5d9e1fa99c2a9a5977f5757f4e0fd02697c995c2 (patch) | |
tree | cbc122d18e549bd8abb93e35f407740ba513c539 /drivers | |
parent | 99c965dd9ee1a004efc083c3d760ba982bb76adf (diff) |
[SCSI] bnx2i: Add 5771E device support to bnx2i driver
Signed-off-by: Anil Veerabhadrappa <anilgv@broadcom.com>
Reviewed-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/bnx2i/bnx2i_init.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/scsi/bnx2i/bnx2i_init.c b/drivers/scsi/bnx2i/bnx2i_init.c index 0c4210d48ee8..1dba86c931e0 100644 --- a/drivers/scsi/bnx2i/bnx2i_init.c +++ b/drivers/scsi/bnx2i/bnx2i_init.c | |||
@@ -83,8 +83,12 @@ void bnx2i_identify_device(struct bnx2i_hba *hba) | |||
83 | set_bit(BNX2I_NX2_DEV_5709, &hba->cnic_dev_type); | 83 | set_bit(BNX2I_NX2_DEV_5709, &hba->cnic_dev_type); |
84 | hba->mail_queue_access = BNX2I_MQ_BIN_MODE; | 84 | hba->mail_queue_access = BNX2I_MQ_BIN_MODE; |
85 | } else if (hba->pci_did == PCI_DEVICE_ID_NX2_57710 || | 85 | } else if (hba->pci_did == PCI_DEVICE_ID_NX2_57710 || |
86 | hba->pci_did == PCI_DEVICE_ID_NX2_57711) | 86 | hba->pci_did == PCI_DEVICE_ID_NX2_57711 || |
87 | hba->pci_did == PCI_DEVICE_ID_NX2_57711E) | ||
87 | set_bit(BNX2I_NX2_DEV_57710, &hba->cnic_dev_type); | 88 | set_bit(BNX2I_NX2_DEV_57710, &hba->cnic_dev_type); |
89 | else | ||
90 | printk(KERN_ALERT "bnx2i: unknown device, 0x%x\n", | ||
91 | hba->pci_did); | ||
88 | } | 92 | } |
89 | 93 | ||
90 | 94 | ||