YABEL: Drop IO stubs that are (by own admission) never used

Change-Id: I90a120e64a5062493f64e3e8b48a75dae9342ec4
Signed-off-by: Patrick Georgi <patrick.georgi@secunet.com>
Reviewed-on: http://review.coreboot.org/6178
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
This commit is contained in:
Patrick Georgi 2014-06-27 12:16:17 +02:00 committed by Patrick Georgi
parent 501093d4fe
commit 577573fd5e
1 changed files with 0 additions and 47 deletions

View File

@ -26,53 +26,6 @@
#include <arch/io.h> #include <arch/io.h>
// these are not used, only needed for linking, must be overridden using X86emu_setupPioFuncs
// with the functions and struct below
void
outb(u8 val, u16 port)
{
printf("WARNING: outb not implemented!\n");
HALT_SYS();
}
void
outw(u16 val, u16 port)
{
printf("WARNING: outw not implemented!\n");
HALT_SYS();
}
void
outl(u32 val, u16 port)
{
printf("WARNING: outl not implemented!\n");
HALT_SYS();
}
u8
inb(u16 port)
{
printf("WARNING: inb not implemented!\n");
HALT_SYS();
return 0;
}
u16
inw(u16 port)
{
printf("WARNING: inw not implemented!\n");
HALT_SYS();
return 0;
}
u32
inl(u16 port)
{
printf("WARNING: inl not implemented!\n");
HALT_SYS();
return 0;
}
#if CONFIG_YABEL_DIRECTHW #if CONFIG_YABEL_DIRECTHW
u8 my_inb(X86EMU_pioAddr addr) u8 my_inb(X86EMU_pioAddr addr)
{ {