632d6fe3fc
The prototypes that were recently defined only work for the internal implementations. Change-Id: Ib34bb75a0b882533da550b9cd17cd777c2463e02 Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com> Reviewed-on: http://review.coreboot.org/2318 Tested-by: build bot (Jenkins) Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
11 lines
200 B
C
11 lines
200 B
C
#if CONFIG_ARCH_X86
|
|
#include <arch/io.h>
|
|
#else
|
|
void outb(u8 val, u16 port);
|
|
void outw(u16 val, u16 port);
|
|
void outl(u32 val, u16 port);
|
|
|
|
u8 inb(u16 port);
|
|
u16 inw(u16 port);
|
|
u32 inl(u16 port);
|
|
#endif
|