]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
libata: kill ata_chk_status()
authorTejun Heo <htejun@gmail.com>
Tue, 25 Mar 2008 13:16:44 +0000 (22:16 +0900)
committerJeff Garzik <jgarzik@redhat.com>
Thu, 17 Apr 2008 19:44:18 +0000 (15:44 -0400)
ata_chk_status() just calls ops->check_status and it only adds
confusion with other status functions.  Kill it.

Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
drivers/ata/libata-sff.c
drivers/ata/pata_bf54x.c
drivers/ata/pata_scc.c
drivers/ata/sata_inic162x.c
drivers/ata/sata_sil.c
drivers/ata/sata_via.c
drivers/ata/sata_vsc.c
include/linux/libata.h

index ebdd46bc13c4405ac066a298bda30bdf8a6d62ef..c601dcef2925f625a486acde9b8210f89ffb6c7d 100644 (file)
@@ -290,7 +290,7 @@ int ata_busy_sleep(struct ata_port *ap,
        while (status != 0xff && (status & ATA_BUSY) &&
               time_before(jiffies, timeout)) {
                msleep(50);
-               status = ata_chk_status(ap);
+               status = ap->ops->check_status(ap);
        }
 
        if (status == 0xff)
@@ -326,7 +326,7 @@ int ata_wait_ready(struct ata_port *ap, unsigned long deadline)
        int warned = 0;
 
        while (1) {
-               u8 status = ata_chk_status(ap);
+               u8 status = ap->ops->check_status(ap);
                unsigned long now = jiffies;
 
                if (!(status & ATA_BUSY))
@@ -1486,7 +1486,7 @@ inline unsigned int ata_host_intr(struct ata_port *ap,
                goto idle_irq;
 
        /* check main status, clearing INTRQ */
-       status = ata_chk_status(ap);
+       status = ap->ops->check_status(ap);
        if (unlikely(status & ATA_BUSY))
                goto idle_irq;
 
@@ -1506,7 +1506,7 @@ idle_irq:
 
 #ifdef ATA_IRQ_TRAP
        if ((ap->stats.idle_irq % 1000) == 0) {
-               ata_chk_status(ap);
+               ap->ops->check_status(ap);
                ap->ops->irq_clear(ap);
                ata_port_printk(ap, KERN_WARNING, "irq trap\n");
                return 1;
@@ -1582,7 +1582,7 @@ void ata_bmdma_freeze(struct ata_port *ap)
         * ATA_NIEN manipulation.  Also, many controllers fail to mask
         * previously pending IRQ on ATA_NIEN assertion.  Clear it.
         */
-       ata_chk_status(ap);
+       ap->ops->check_status(ap);
 
        ap->ops->irq_clear(ap);
 }
@@ -1599,7 +1599,7 @@ void ata_bmdma_freeze(struct ata_port *ap)
 void ata_bmdma_thaw(struct ata_port *ap)
 {
        /* clear & re-enable interrupts */
-       ata_chk_status(ap);
+       ap->ops->check_status(ap);
        ap->ops->irq_clear(ap);
        ap->ops->irq_on(ap);
 }
@@ -1709,7 +1709,7 @@ unsigned int ata_dev_try_classify(struct ata_device *dev, int present,
                        class = ATA_DEV_ATA;
                else
                        class = ATA_DEV_NONE;
-       } else if ((class == ATA_DEV_ATA) && (ata_chk_status(ap) == 0))
+       } else if ((class == ATA_DEV_ATA) && (ap->ops->check_status(ap) == 0))
                class = ATA_DEV_NONE;
 
        return class;
@@ -1820,7 +1820,7 @@ void ata_wait_after_reset(struct ata_port *ap, unsigned long deadline)
         */
        if (ap->flags & ATA_FLAG_SATA) {
                while (1) {
-                       u8 status = ata_chk_status(ap);
+                       u8 status = ap->ops->check_status(ap);
 
                        if (status != 0xff || time_after(jiffies, deadline))
                                return;
@@ -1851,7 +1851,7 @@ static int ata_bus_softreset(struct ata_port *ap, unsigned int devmask,
         * the bus shows 0xFF because the odd clown forgets the D7
         * pulldown resistor.
         */
-       if (ata_chk_status(ap) == 0xFF)
+       if (ap->ops->check_status(ap) == 0xFF)
                return -ENODEV;
 
        return ata_bus_post_reset(ap, devmask, deadline);
@@ -2034,7 +2034,7 @@ void ata_bmdma_error_handler(struct ata_port *ap)
        }
 
        ata_altstatus(ap);
-       ata_chk_status(ap);
+       ap->ops->check_status(ap);
        ap->ops->irq_clear(ap);
 
        spin_unlock_irqrestore(ap->lock, flags);
@@ -2725,7 +2725,6 @@ EXPORT_SYMBOL_GPL(ata_sff_port_ops);
 EXPORT_SYMBOL_GPL(ata_bmdma_port_ops);
 EXPORT_SYMBOL_GPL(ata_qc_prep);
 EXPORT_SYMBOL_GPL(ata_dumb_qc_prep);
-EXPORT_SYMBOL_GPL(ata_pci_default_filter);
 EXPORT_SYMBOL_GPL(ata_std_dev_select);
 EXPORT_SYMBOL_GPL(ata_check_status);
 EXPORT_SYMBOL_GPL(ata_altstatus);
@@ -2754,6 +2753,7 @@ EXPORT_SYMBOL_GPL(ata_bmdma_error_handler);
 EXPORT_SYMBOL_GPL(ata_bmdma_post_internal_cmd);
 EXPORT_SYMBOL_GPL(ata_sff_port_start);
 EXPORT_SYMBOL_GPL(ata_std_ports);
+EXPORT_SYMBOL_GPL(ata_pci_default_filter);
 EXPORT_SYMBOL_GPL(ata_bmdma_setup);
 EXPORT_SYMBOL_GPL(ata_bmdma_start);
 EXPORT_SYMBOL_GPL(ata_bmdma_stop);
index eea275acb2a8a50c36160af9630be3a9476ca89e..457ac800cd5ee93b668007ab250961d68cc74fb4 100644 (file)
@@ -1264,7 +1264,7 @@ static void bfin_bmdma_freeze(struct ata_port *ap)
         * ATA_NIEN manipulation.  Also, many controllers fail to mask
         * previously pending IRQ on ATA_NIEN assertion.  Clear it.
         */
-       ata_chk_status(ap);
+       ap->ops->check_status(ap);
 
        bfin_irq_clear(ap);
 }
index 07f2d7a6f1a829cca2b81963f3274e6904af848f..85d33637dff95649a109c5c00bd776c4b0864443 100644 (file)
@@ -854,7 +854,7 @@ static void scc_bmdma_freeze (struct ata_port *ap)
         * ATA_NIEN manipulation.  Also, many controllers fail to mask
         * previously pending IRQ on ATA_NIEN assertion.  Clear it.
         */
-       ata_chk_status(ap);
+       ap->ops->check_status(ap);
 
        ap->ops->irq_clear(ap);
 }
index ba1c09953517c5273ffa23a47477b8043ed8b5fd..12fbf3868fe226a3078e0cf2129c505e316641a0 100644 (file)
@@ -267,14 +267,14 @@ static void inic_host_intr(struct ata_port *ap)
                        ata_qc_from_tag(ap, ap->link.active_tag);
 
                if (unlikely(!qc || (qc->tf.flags & ATA_TFLAG_POLLING))) {
-                       ata_chk_status(ap);     /* clear ATA interrupt */
+                       ap->ops->check_status(ap); /* clear ATA interrupt */
                        return;
                }
 
                if (likely(ata_host_intr(ap, qc)))
                        return;
 
-               ata_chk_status(ap);     /* clear ATA interrupt */
+               ap->ops->check_status(ap); /* clear ATA interrupt */
                ata_port_printk(ap, KERN_WARNING, "unhandled "
                                "interrupt, irq_stat=%x\n", irq_stat);
                return;
@@ -351,7 +351,7 @@ static unsigned int inic_qc_issue(struct ata_queued_cmd *qc)
         */
        if (unlikely(qc->tf.command == ATA_CMD_ID_ATA ||
                     qc->tf.command == ATA_CMD_ID_ATAPI)) {
-               u8 stat = ata_chk_status(ap);
+               u8 stat = ap->ops->check_status(ap);
                if (stat == 0x7f || stat == 0xff)
                        return AC_ERR_HSM;
        }
@@ -365,7 +365,7 @@ static void inic_freeze(struct ata_port *ap)
 
        __inic_set_pirq_mask(ap, PIRQ_MASK_FREEZE);
 
-       ata_chk_status(ap);
+       ap->ops->check_status(ap);
        writeb(0xff, port_base + PORT_IRQ_STAT);
 
        readb(port_base + PORT_IRQ_STAT); /* flush */
@@ -375,7 +375,7 @@ static void inic_thaw(struct ata_port *ap)
 {
        void __iomem *port_base = inic_port_base(ap);
 
-       ata_chk_status(ap);
+       ap->ops->check_status(ap);
        writeb(0xff, port_base + PORT_IRQ_STAT);
 
        __inic_set_pirq_mask(ap, PIRQ_MASK_OTHER);
index eac7ca73cfa0ddcefbf8ef10309317d1e864d158..659dfcbdc1b2cc3daff13ce7704645199baace10 100644 (file)
@@ -369,7 +369,7 @@ static void sil_host_intr(struct ata_port *ap, u32 bmdma2)
 
        if (unlikely(!qc || (qc->tf.flags & ATA_TFLAG_POLLING))) {
                /* this sometimes happens, just clear IRQ */
-               ata_chk_status(ap);
+               ap->ops->check_status(ap);
                return;
        }
 
@@ -405,7 +405,7 @@ static void sil_host_intr(struct ata_port *ap, u32 bmdma2)
        }
 
        /* check main status, clearing INTRQ */
-       status = ata_chk_status(ap);
+       status = ap->ops->check_status(ap);
        if (unlikely(status & ATA_BUSY))
                goto err_hsm;
 
@@ -480,7 +480,7 @@ static void sil_thaw(struct ata_port *ap)
        u32 tmp;
 
        /* clear IRQ */
-       ata_chk_status(ap);
+       ap->ops->check_status(ap);
        ata_bmdma_irq_clear(ap);
 
        /* turn on SATA IRQ if supported */
index 402fd7333d48b861e8183cd235d61f421994dd64..4bc6e849af2c66275fd262556f5fa4c5a74a4e3d 100644 (file)
@@ -173,7 +173,7 @@ static void svia_noop_freeze(struct ata_port *ap)
        /* Some VIA controllers choke if ATA_NIEN is manipulated in
         * certain way.  Leave it alone and just clear pending IRQ.
         */
-       ata_chk_status(ap);
+       ap->ops->check_status(ap);
        ata_bmdma_irq_clear(ap);
 }
 
index 8045a72dc55910af066576f1a5751f3f9981fbc8..fb3a8872266443bb7e628bc9ad4db5141f4d0291 100644 (file)
@@ -251,7 +251,7 @@ static void vsc_port_intr(u8 port_status, struct ata_port *ap)
         * simply clear the interrupt
         */
        if (unlikely(!handled))
-               ata_chk_status(ap);
+               ap->ops->check_status(ap);
 }
 
 /*
index 53b8db05a1fb478838adea8f8a724b5774ce54b4..61a7f8d06971a1b80e95e452cced0713442887b8 100644 (file)
@@ -1401,11 +1401,6 @@ extern int ata_pci_init_one(struct pci_dev *pdev,
                            struct scsi_host_template *sht, void *host_priv);
 #endif /* CONFIG_PCI */
 
-static inline u8 ata_chk_status(struct ata_port *ap)
-{
-       return ap->ops->check_status(ap);
-}
-
 /**
  *     ata_pause - Flush writes and pause 400 nanoseconds.
  *     @ap: Port to wait for.
@@ -1439,7 +1434,7 @@ static inline u8 ata_busy_wait(struct ata_port *ap, unsigned int bits,
 
        do {
                udelay(10);
-               status = ata_chk_status(ap);
+               status = ap->ops->check_status(ap);
                max--;
        } while (status != 0xff && (status & bits) && (max > 0));