aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata/pata_ep93xx.c
diff options
context:
space:
mode:
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>2012-12-03 23:30:55 -0500
committerJeff Garzik <jgarzik@redhat.com>2012-12-14 09:38:42 -0500
commit99da09fcc561b56664b3c4184b5caf4e94449e98 (patch)
tree125cce741de706a0227ee9613a41514bde41a347 /drivers/ata/pata_ep93xx.c
parent071d3ad37485a82e0543a503272c45cdd32053dd (diff)
ARM: ep93xx: convert ata_<foo>_printk() to ata_<foo>_<level>()
Using ata_<foo>_<level>() instead of ata_<foo>_printk(). Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/ata/pata_ep93xx.c')
-rw-r--r--drivers/ata/pata_ep93xx.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/ata/pata_ep93xx.c b/drivers/ata/pata_ep93xx.c
index e056406d6a11..3982cef91f3c 100644
--- a/drivers/ata/pata_ep93xx.c
+++ b/drivers/ata/pata_ep93xx.c
@@ -822,8 +822,7 @@ static int ep93xx_pata_softreset(struct ata_link *al, unsigned int *classes,
822 rc = ep93xx_pata_bus_softreset(ap, devmask, deadline); 822 rc = ep93xx_pata_bus_softreset(ap, devmask, deadline);
823 /* if link is ocuppied, -ENODEV too is an error */ 823 /* if link is ocuppied, -ENODEV too is an error */
824 if (rc && (rc != -ENODEV || sata_scr_valid(al))) { 824 if (rc && (rc != -ENODEV || sata_scr_valid(al))) {
825 ata_link_printk(al, KERN_ERR, "SRST failed (errno=%d)\n", 825 ata_link_err(al, "SRST failed (errno=%d)\n", rc);
826 rc);
827 return rc; 826 return rc;
828 } 827 }
829 828
@@ -857,8 +856,7 @@ static void ep93xx_pata_drain_fifo(struct ata_queued_cmd *qc)
857 856
858 /* Can become DEBUG later */ 857 /* Can become DEBUG later */
859 if (count) 858 if (count)
860 ata_port_printk(ap, KERN_DEBUG, 859 ata_port_dbg(ap, "drained %d bytes to clear DRQ.\n", count);
861 "drained %d bytes to clear DRQ.\n", count);
862 860
863} 861}
864 862