[SCSI] qla2xxx: Wrong PCIe(2.5Gb/s x8) speed in the kerenel message for ISP82xx.
authorAtul Deshmukh <atul.deshmukh@qlogic.com>
Wed, 22 Aug 2012 18:21:14 +0000 (14:21 -0400)
committerJames Bottomley <JBottomley@Parallels.com>
Mon, 24 Sep 2012 08:10:50 +0000 (12:10 +0400)
qla2xxx show wrong PCIe(2.5Gb/s x8) speed in the kerenel message. It should be
5.0Gb/s.

Signed-off-by: Atul Deshmukh <atul.deshmukh@qlogic.com>
Signed-off-by: Chad Dupuis <chad.dupuis@qlogic.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
drivers/scsi/qla2xxx/qla_gbl.h
drivers/scsi/qla2xxx/qla_nx.c
drivers/scsi/qla2xxx/qla_os.c

index 5afd72e0093e8e0b5f96078668be0adef3e7fd5b..6acb39785a46a2992fa0ec6e761dff79c56d0f93 100644 (file)
@@ -558,7 +558,6 @@ extern void qla24xx_wrt_rsp_reg(struct qla_hw_data *, uint16_t, uint16_t);
 /* PCI related functions */
 extern int qla82xx_pci_config(struct scsi_qla_host *);
 extern int qla82xx_pci_mem_read_2M(struct qla_hw_data *, u64, void *, int);
-extern char *qla82xx_pci_info_str(struct scsi_qla_host *, char *);
 extern int qla82xx_pci_region_offset(struct pci_dev *, int);
 extern int qla82xx_iospace_config(struct qla_hw_data *);
 
index 3653c8f389487c3a1031d0d88b25cb5d35cb2a25..9fc08b881f9c675fb72b644b6464f39d258ed6cc 100644 (file)
@@ -1612,25 +1612,6 @@ qla82xx_get_fw_offs(struct qla_hw_data *ha)
 }
 
 /* PCI related functions */
-char *
-qla82xx_pci_info_str(struct scsi_qla_host *vha, char *str)
-{
-       int pcie_reg;
-       struct qla_hw_data *ha = vha->hw;
-       char lwstr[6];
-       uint16_t lnk;
-
-       pcie_reg = pci_pcie_cap(ha->pdev);
-       pci_read_config_word(ha->pdev, pcie_reg + PCI_EXP_LNKSTA, &lnk);
-       ha->link_width = (lnk >> 4) & 0x3f;
-
-       strcpy(str, "PCIe (");
-       strcat(str, "2.5Gb/s ");
-       snprintf(lwstr, sizeof(lwstr), "x%d)", ha->link_width);
-       strcat(str, lwstr);
-       return str;
-}
-
 int qla82xx_pci_region_offset(struct pci_dev *pdev, int region)
 {
        unsigned long val = 0;
index 925b8ac19dde6b9cb4ae207415f448fec198d996..c7eabcd569158582be2e614ffa26f86f7709beaa 100644 (file)
@@ -1919,7 +1919,7 @@ static struct isp_operations qla82xx_isp_ops = {
        .nvram_config           = qla81xx_nvram_config,
        .update_fw_options      = qla24xx_update_fw_options,
        .load_risc              = qla82xx_load_risc,
-       .pci_info_str           = qla82xx_pci_info_str,
+       .pci_info_str           = qla24xx_pci_info_str,
        .fw_version_str         = qla24xx_fw_version_str,
        .intr_handler           = qla82xx_intr_handler,
        .enable_intrs           = qla82xx_enable_intrs,
This page took 0.035676 seconds and 5 git commands to generate.