]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blobdiff - arch/x86/boot/compressed/misc_32.c
x86: provide a DMI based port 0x80 I/O delay override.
[mirror_ubuntu-artful-kernel.git] / arch / x86 / boot / compressed / misc_32.c
index b74d60d1b2fa1329f6f28c434fc47445cb39ccb4..288e16283ef960836af34c7273b2356cb1e1e1a9 100644 (file)
@@ -276,10 +276,10 @@ static void putstr(const char *s)
        RM_SCREEN_INFO.orig_y = y;
 
        pos = (x + cols * y) * 2;       /* Update cursor position */
-       outb_p(14, vidport);
-       outb_p(0xff & (pos >> 9), vidport+1);
-       outb_p(15, vidport);
-       outb_p(0xff & (pos >> 1), vidport+1);
+       outb(14, vidport);
+       outb(0xff & (pos >> 9), vidport+1);
+       outb(15, vidport);
+       outb(0xff & (pos >> 1), vidport+1);
 }
 
 static void* memset(void* s, int c, unsigned n)