]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
[SCSI] qla2xxx: AER Support-Return recovered from mmio_enable function for 82XX.
authorSaurav Kashyap <saurav.kashyap@qlogic.com>
Fri, 3 Sep 2010 22:20:57 +0000 (15:20 -0700)
committerJames Bottomley <James.Bottomley@suse.de>
Sun, 5 Sep 2010 18:36:28 +0000 (15:36 -0300)
Return recovered from pci_mmio_enabled function if it is 82XX.

Signed-off-by: Giridhar Malavali <giridhar.malavali@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
drivers/scsi/qla2xxx/qla_os.c

index 2e10f2b2e017a259fa56045bfca05591721623cc..bdd53f0ebef05d04fd8ce0b0a9c8ddd1d62a1a16 100644 (file)
@@ -3803,6 +3803,9 @@ qla2xxx_pci_mmio_enabled(struct pci_dev *pdev)
        struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
        struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
 
+       if (IS_QLA82XX(ha))
+               return PCI_ERS_RESULT_RECOVERED;
+
        spin_lock_irqsave(&ha->hardware_lock, flags);
        if (IS_QLA2100(ha) || IS_QLA2200(ha)){
                stat = RD_REG_DWORD(&reg->hccr);