From ed7aaf9d9430497465a20ee26eaf15831ff4d4d9 Mon Sep 17 00:00:00 2001 From: Tejun Heo Date: Mon, 25 Jun 2007 21:31:05 +0900 Subject: [PATCH] --- yaml --- r: 58058 b: refs/heads/master c: 55f3952d45a439cecc36fd845a87026d04c82931 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/include/linux/libata.h | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/[refs] b/[refs] index b51cb60cc0ab..9223d43f5cc3 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 62877f6b0c4943c2231b84b49182a078eb02a777 +refs/heads/master: 55f3952d45a439cecc36fd845a87026d04c82931 diff --git a/trunk/include/linux/libata.h b/trunk/include/linux/libata.h index 745c4f9b4caa..a3380f808630 100644 --- a/trunk/include/linux/libata.h +++ b/trunk/include/linux/libata.h @@ -1088,11 +1088,9 @@ static inline u8 ata_wait_idle(struct ata_port *ap) { u8 status = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000); - if (status != 0xff && (status & (ATA_BUSY | ATA_DRQ))) { - if (ata_msg_warn(ap)) - printk(KERN_WARNING "ATA: abnormal status 0x%X on port 0x%p\n", - status, ap->ioaddr.status_addr); - } + if (status != 0xff && (status & (ATA_BUSY | ATA_DRQ))) + DPRINTK("ATA: abnormal status 0x%X on port 0x%p\n", + status, ap->ioaddr.status_addr); return status; }