···1384138413851385static inline int ata_check_ready(u8 status)13861386{13871387- /* Some controllers report 0x77 or 0x7f during intermediate13881388- * not-ready stages.13891389- */13901390- if (status == 0x77 || status == 0x7f)13911391- return 0;13871387+ if (!(status & ATA_BUSY))13881388+ return 1;1392138913931390 /* 0xff indicates either no device or device not ready */13941391 if (status == 0xff)13951392 return -ENODEV;1396139313971397- return !(status & ATA_BUSY);13941394+ return 0;13981395}1399139614001397