]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PATCH] ahci: remove IRQ mask clearing from init_controller()
authorTejun Heo <htejun@gmail.com>
Mon, 7 Aug 2006 02:39:04 +0000 (11:39 +0900)
committerJeff Garzik <jeff@garzik.org>
Wed, 9 Aug 2006 04:13:28 +0000 (00:13 -0400)
Initial IRQ mask clearing is done by libata-core by freezing all ports
prior to requesting IRQ.  Remove redundant IRQ clearing from
init_controller().

Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
drivers/scsi/ahci.c

index f5734a97580a8396ed046dc2322799b4153337a3..68fd7667a082710b1dd745ede2dee8f7efae740c 100644 (file)
@@ -662,14 +662,13 @@ static void ahci_init_controller(void __iomem *mmio, struct pci_dev *pdev,
                VPRINTK("PORT_SCR_ERR 0x%x\n", tmp);
                writel(tmp, port_mmio + PORT_SCR_ERR);
 
-               /* clear & turn off port IRQ */
+               /* clear port IRQ */
                tmp = readl(port_mmio + PORT_IRQ_STAT);
                VPRINTK("PORT_IRQ_STAT 0x%x\n", tmp);
                if (tmp)
                        writel(tmp, port_mmio + PORT_IRQ_STAT);
 
                writel(1 << i, mmio + HOST_IRQ_STAT);
-               writel(0, port_mmio + PORT_IRQ_MASK);
        }
 
        tmp = readl(mmio + HOST_CTL);