Searched refs:hd_error (Results 1 – 1 of 1) sorted by relevance
116 static int hd_error; variable224 hd_error = 0; in dump_status()226 hd_error = inb(HD_ERROR); in dump_status()227 printk("%s: %s: error=0x%02x { ", name, msg, hd_error & 0xff); in dump_status()228 if (hd_error & BBD_ERR) printk("BadSector "); in dump_status()229 if (hd_error & ECC_ERR) printk("UncorrectableError "); in dump_status()230 if (hd_error & ID_ERR) printk("SectorIdNotFound "); in dump_status()231 if (hd_error & ABRT_ERR) printk("DriveStatusError "); in dump_status()232 if (hd_error & TRK0_ERR) printk("TrackZeroNotFound "); in dump_status()233 if (hd_error & MARK_ERR) printk("AddrMarkNotFound "); in dump_status()[all …]