Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 38466
b: refs/heads/master
c: 35aa7a4
h: refs/heads/master
v: v3
  • Loading branch information
Jeff Garzik committed Sep 28, 2006
1 parent c55a29e commit 0de7f39
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d639ca94188fedbd8cfde1ab4ed9e9878ab2f01e
refs/heads/master: 35aa7a436c0901fd6f352eff347f58448c141a25
6 changes: 4 additions & 2 deletions trunk/drivers/ata/libata-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -2340,7 +2340,8 @@ unsigned int ata_busy_sleep (struct ata_port *ap,

if (status & ATA_BUSY)
ata_port_printk(ap, KERN_WARNING,
"port is slow to respond, please be patient\n");
"port is slow to respond, please be patient "
"(Status 0x%x)\n", status);

timeout = timer_start + tmout;
while ((status & ATA_BUSY) && (time_before(jiffies, timeout))) {
Expand All @@ -2350,7 +2351,8 @@ unsigned int ata_busy_sleep (struct ata_port *ap,

if (status & ATA_BUSY) {
ata_port_printk(ap, KERN_ERR, "port failed to respond "
"(%lu secs)\n", tmout / HZ);
"(%lu secs, Status 0x%x)\n",
tmout / HZ, status);
return 1;
}

Expand Down

0 comments on commit 0de7f39

Please sign in to comment.