mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
Infinite loop fix (Justin Chevrier)
git-svn-id: svn://coreboot.org/openbios/openbios-devel@321 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
@@ -359,11 +359,8 @@ static unsigned char collect_interrupt(void)
|
||||
printk_debug("SENSEI %02x %02x\n",
|
||||
reply_buffer[0], reply_buffer[1]);
|
||||
}
|
||||
#if 0
|
||||
}while((nr == 2) && (reply_buffer[0] != 0x80));
|
||||
#else
|
||||
max_sensei--;
|
||||
}while(((reply_buffer[0] & 0x83) != FD_DRIVE) && (nr == 2) && max_sensei);
|
||||
#endif
|
||||
status = inb(FD_STATUS);
|
||||
printk_debug("status = %x, reply_buffer=", status);
|
||||
for(i = 0; i < nr; i++) {
|
||||
|
||||
Reference in New Issue
Block a user