From 0004ea613ac310daaee30c167112d796db33fa70 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 18 Nov 2012 19:58:15 -0500 Subject: fix breakage from introducing bits header for sys/io.h apparently some other archs have sys/io.h and should not break just because they don't have the x86 port io functions. provide a blank bits/io.h everywhere for now. --- arch/i386/bits/io.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'arch/i386') diff --git a/arch/i386/bits/io.h b/arch/i386/bits/io.h index d26ea57b..dd5bddc9 100644 --- a/arch/i386/bits/io.h +++ b/arch/i386/bits/io.h @@ -1,6 +1,3 @@ -int iopl(int); -int ioperm(unsigned long, unsigned long, int); - static __inline void outb(unsigned char __val, unsigned short __port) { __asm__ volatile ("outb %0,%1" : : "a" (__val), "dN" (__port)); -- cgit v1.2.1