diff options
author | Simon Glass <sjg@chromium.org> | 2013-02-14 17:38:30 (GMT) |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2013-02-15 04:19:03 (GMT) |
commit | 96dfc0633aabb4f8fb720d39d9deb29dde08749b (patch) | |
tree | 9b58613378b468faa5dd1a7db1db7feba37730fd /arch/x86/lib/bios.h | |
parent | 588a13f742b6d63ac7d5631af11baa01f3a9e80f (diff) | |
download | u-boot-fsl-qoriq-96dfc0633aabb4f8fb720d39d9deb29dde08749b.tar.xz |
x86: Remove unused real mode code
This code is pretty old and we want to support only 32-bit systems now.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'arch/x86/lib/bios.h')
-rw-r--r-- | arch/x86/lib/bios.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/x86/lib/bios.h b/arch/x86/lib/bios.h index a220983..96509b0 100644 --- a/arch/x86/lib/bios.h +++ b/arch/x86/lib/bios.h @@ -145,9 +145,6 @@ extern void *rm_int1e; extern void *rm_int1f; extern void *rm_def_int; -extern void *realmode_reset; -extern void *realmode_pci_bios_call_entry; - #define RELOC_16_LONG(seg, off) (*(u32 *)(seg << 4 | (u32)&off)) #define RELOC_16_WORD(seg, off) (*(u16 *)(seg << 4 | (u32)&off)) #define RELOC_16_BYTE(seg, off) (*(u8 *)(seg << 4 | (u32)&off)) |