diff options
author | Patrick Georgi <patrick.georgi@secunet.com> | 2014-06-27 12:16:17 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2014-07-05 21:16:13 +0200 |
commit | 577573fd5ec7df094da09c92ae454b261173ecbe (patch) | |
tree | 9c4b2b917861a91770ba6f3d5e407dc8afb85d2c /src/device/oprom/yabel | |
parent | 501093d4fe993cfcca915c0d1fe2ab3a596d27b7 (diff) | |
download | coreboot-577573fd5ec7df094da09c92ae454b261173ecbe.tar.xz |
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>
Diffstat (limited to 'src/device/oprom/yabel')
-rw-r--r-- | src/device/oprom/yabel/io.c | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/src/device/oprom/yabel/io.c b/src/device/oprom/yabel/io.c index 37beccbe4e..08189a948b 100644 --- a/src/device/oprom/yabel/io.c +++ b/src/device/oprom/yabel/io.c @@ -26,53 +26,6 @@ #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 u8 my_inb(X86EMU_pioAddr addr) { |