mirror of
https://github.com/ipxe/ipxe
synced 2025-12-19 11:00:27 +03:00
Kill off poll_interruptions(); it is lethal when we're acting as a PXE
stack or INT 13 emulator etc.
This commit is contained in:
@@ -17,7 +17,6 @@ void mdelay(unsigned int msecs)
|
||||
unsigned int i;
|
||||
for(i = 0; i < msecs; i++) {
|
||||
udelay(1000);
|
||||
poll_interruptions();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -25,6 +24,5 @@ void waiton_timer2(unsigned int ticks)
|
||||
{
|
||||
load_timer2(ticks);
|
||||
while(timer2_running()) {
|
||||
poll_interruptions();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user