Merge branch 'upstream-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzi...
[pandora-kernel.git] / drivers / ata / sata_fsl.c
index 35a71d8..78ae7b6 100644 (file)
@@ -346,12 +346,11 @@ static unsigned int sata_fsl_fill_sg(struct ata_queued_cmd *qc, void *cmd_desc,
 
                /* warn if each s/g element is not dword aligned */
                if (sg_addr & 0x03)
-                       ata_port_printk(qc->ap, KERN_ERR,
-                                       "s/g addr unaligned : 0x%llx\n",
-                                       (unsigned long long)sg_addr);
+                       ata_port_err(qc->ap, "s/g addr unaligned : 0x%llx\n",
+                                    (unsigned long long)sg_addr);
                if (sg_len & 0x03)
-                       ata_port_printk(qc->ap, KERN_ERR,
-                                       "s/g len unaligned : 0x%x\n", sg_len);
+                       ata_port_err(qc->ap, "s/g len unaligned : 0x%x\n",
+                                    sg_len);
 
                if (num_prde == (SATA_FSL_MAX_PRD_DIRECT - 1) &&
                    sg_next(sg) != NULL) {
@@ -661,8 +660,7 @@ static int sata_fsl_port_start(struct ata_port *ap)
        sata_fsl_scr_write(&ap->link, SCR_CONTROL, temp);
 
        sata_fsl_scr_read(&ap->link, SCR_CONTROL, &temp);
-       dev_printk(KERN_WARNING, dev, "scr_control, speed limited to %x\n",
-                       temp);
+       dev_warn(dev, "scr_control, speed limited to %x\n", temp);
 #endif
 
        return 0;
@@ -740,8 +738,7 @@ try_offline_again:
                                 1, 500);
 
        if (temp & ONLINE) {
-               ata_port_printk(ap, KERN_ERR,
-                               "Hardreset failed, not off-lined %d\n", i);
+               ata_port_err(ap, "Hardreset failed, not off-lined %d\n", i);
 
                /*
                 * Try to offline controller atleast twice
@@ -777,8 +774,7 @@ try_offline_again:
        temp = ata_wait_register(ap, hcr_base + HSTATUS, ONLINE, 0, 1, 500);
 
        if (!(temp & ONLINE)) {
-               ata_port_printk(ap, KERN_ERR,
-                               "Hardreset failed, not on-lined\n");
+               ata_port_err(ap, "Hardreset failed, not on-lined\n");
                goto err;
        }
 
@@ -794,9 +790,8 @@ try_offline_again:
 
        temp = ata_wait_register(ap, hcr_base + HSTATUS, 0xFF, 0, 1, 500);
        if ((!(temp & 0x10)) || ata_link_offline(link)) {
-               ata_port_printk(ap, KERN_WARNING,
-                               "No Device OR PHYRDY change,Hstatus = 0x%x\n",
-                               ioread32(hcr_base + HSTATUS));
+               ata_port_warn(ap, "No Device OR PHYRDY change,Hstatus = 0x%x\n",
+                             ioread32(hcr_base + HSTATUS));
                *class = ATA_DEV_NONE;
                return 0;
        }
@@ -809,13 +804,12 @@ try_offline_again:
                        500, jiffies_to_msecs(deadline - start_jiffies));
 
        if ((temp & 0xFF) != 0x18) {
-               ata_port_printk(ap, KERN_WARNING, "No Signature Update\n");
+               ata_port_warn(ap, "No Signature Update\n");
                *class = ATA_DEV_NONE;
                goto do_followup_srst;
        } else {
-               ata_port_printk(ap, KERN_INFO,
-                               "Signature Update detected @ %d msecs\n",
-                               jiffies_to_msecs(jiffies - start_jiffies));
+               ata_port_info(ap, "Signature Update detected @ %d msecs\n",
+                             jiffies_to_msecs(jiffies - start_jiffies));
                *class = sata_fsl_dev_classify(ap);
                return 0;
        }
@@ -890,7 +884,7 @@ static int sata_fsl_softreset(struct ata_link *link, unsigned int *class,
 
        temp = ata_wait_register(ap, CQ + hcr_base, 0x1, 0x1, 1, 5000);
        if (temp & 0x1) {
-               ata_port_printk(ap, KERN_WARNING, "ATA_SRST issue failed\n");
+               ata_port_warn(ap, "ATA_SRST issue failed\n");
 
                DPRINTK("Softreset@5000,CQ=0x%x,CA=0x%x,CC=0x%x\n",
                        ioread32(CQ + hcr_base),
@@ -1202,8 +1196,7 @@ static irqreturn_t sata_fsl_interrupt(int irq, void *dev_instance)
        if (ap) {
                sata_fsl_host_intr(ap);
        } else {
-               dev_printk(KERN_WARNING, host->dev,
-                          "interrupt on disabled port 0\n");
+               dev_warn(host->dev, "interrupt on disabled port 0\n");
        }
 
        iowrite32(interrupt_enables, hcr_base + HSTATUS);
@@ -1317,8 +1310,7 @@ static int sata_fsl_probe(struct platform_device *ofdev)
        struct ata_port_info pi = sata_fsl_port_info[0];
        const struct ata_port_info *ppi[] = { &pi, NULL };
 
-       dev_printk(KERN_INFO, &ofdev->dev,
-                  "Sata FSL Platform/CSB Driver init\n");
+       dev_info(&ofdev->dev, "Sata FSL Platform/CSB Driver init\n");
 
        hcr_base = of_iomap(ofdev->dev.of_node, 0);
        if (!hcr_base)
@@ -1347,7 +1339,7 @@ static int sata_fsl_probe(struct platform_device *ofdev)
 
        irq = irq_of_parse_and_map(ofdev->dev.of_node, 0);
        if (irq < 0) {
-               dev_printk(KERN_ERR, &ofdev->dev, "invalid irq from platform\n");
+               dev_err(&ofdev->dev, "invalid irq from platform\n");
                goto error_exit_with_cleanup;
        }
        host_priv->irq = irq;
@@ -1422,8 +1414,7 @@ static int sata_fsl_resume(struct platform_device *op)
 
        ret = sata_fsl_init_controller(host);
        if (ret) {
-               dev_printk(KERN_ERR, &op->dev,
-                       "Error initialize hardware\n");
+               dev_err(&op->dev, "Error initializing hardware\n");
                return ret;
        }