projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
071d3ad
)
ARM: ep93xx: convert ata_<foo>_printk() to ata_<foo>_<level>()
author
Wei Yongjun
<yongjun_wei@trendmicro.com.cn>
Tue, 4 Dec 2012 04:30:55 +0000
(23:30 -0500)
committer
Jeff Garzik
<jgarzik@redhat.com>
Fri, 14 Dec 2012 14:38:42 +0000
(09:38 -0500)
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>
drivers/ata/pata_ep93xx.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/ata/pata_ep93xx.c
b/drivers/ata/pata_ep93xx.c
index e056406d6a11eb7ed7cf990f962cdc216d1e53d8..3982cef91f3c2da4c7b505c321bb081c98bf9e93 100644
(file)
--- 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,
rc = ep93xx_pata_bus_softreset(ap, devmask, deadline);
/* if link is ocuppied, -ENODEV too is an error */
if (rc && (rc != -ENODEV || sata_scr_valid(al))) {
- ata_link_printk(al, KERN_ERR, "SRST failed (errno=%d)\n",
- rc);
+ ata_link_err(al, "SRST failed (errno=%d)\n", rc);
return rc;
}
@@
-857,8
+856,7
@@
static void ep93xx_pata_drain_fifo(struct ata_queued_cmd *qc)
/* Can become DEBUG later */
if (count)
- ata_port_printk(ap, KERN_DEBUG,
- "drained %d bytes to clear DRQ.\n", count);
+ ata_port_dbg(ap, "drained %d bytes to clear DRQ.\n", count);
}