diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-01-19 21:13:44 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-01-19 21:13:44 +0000 |
commit | 8ed1b6d2dc16b25334dff13033843b8c7f125f83 (patch) | |
tree | be5210211a638873f15592bd7babfea6dcf80961 /util/x86emu/biosemu.c | |
parent | d5663bac2c6b2cea2f8c5fa4bd972517325af13b (diff) |
drop COREBOOT_V2 and COREBOOT_V4 define. We're not sharing code with v3
anymore so this ugly hack is no longer needed.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Peter Stuge <peter@stuge.se>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5040 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/x86emu/biosemu.c')
-rw-r--r-- | util/x86emu/biosemu.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/util/x86emu/biosemu.c b/util/x86emu/biosemu.c index c773539c3e..b847bb0109 100644 --- a/util/x86emu/biosemu.c +++ b/util/x86emu/biosemu.c @@ -37,13 +37,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include <string.h> -#ifdef CONFIG_COREBOOT_V2 #include <arch/io.h> #include <console/console.h> -#else -#include <io.h> -#include <console.h> -#endif #include <device/device.h> #include <device/pci.h> #include <device/pci_ids.h> @@ -243,11 +238,7 @@ static int int1a_handler(void) break; case FIND_PCI_DEVICE: /* FIXME: support SI != 0 */ -#ifdef CONFIG_COREBOOT_V2 dev = dev_find_device(X86_DX, X86_CX, dev); -#else - dev = dev_find_pci_device(X86_DX, X86_CX, dev); -#endif if (dev != 0) { X86_BH = dev->bus->secondary; X86_BL = dev->path.pci.devfn; |