Lines Matching refs:stat
101 * @stat: status byte to decode
108 u8 ide_dump_status(ide_drive_t *drive, const char *msg, u8 stat)
112 printk(KERN_ERR "%s: %s: status=0x%02x { ", drive->name, msg, stat);
113 if (stat & ATA_BUSY)
116 if (stat & ATA_DRDY)
118 if (stat & ATA_DF)
120 if (stat & ATA_DSC)
122 if (stat & ATA_DRQ)
124 if (stat & ATA_CORR)
126 if (stat & ATA_SENSE)
128 if (stat & ATA_ERR)
132 if ((stat & (ATA_BUSY | ATA_ERR)) == ATA_ERR) {