A keyboard controller fix to stop the code from waiting for a code that never
[coreboot.git] / src / pc80 / udelay_io.c
1 #include <arch/io.h>
2
3 void udelay(unsigned usecs)
4 {
5         int i;
6         for(i = 0; i < usecs; i++)
7                 inb(0x80);
8 }
9