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; }