diff options
author | Simon Glass <sjg@chromium.org> | 2017-01-16 07:04:09 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2017-02-06 11:38:46 +0800 |
commit | 05cbd985c0b9b5319355fcd562f5665d5fcb8652 (patch) | |
tree | 12ea40de97e5e159ec44cc30298d4d781fc4aa64 /drivers/pci | |
parent | 1b4086307e5b5c26ac33ad31bb5da60578e5765d (diff) | |
download | u-boot-imx-05cbd985c0b9b5319355fcd562f5665d5fcb8652.zip u-boot-imx-05cbd985c0b9b5319355fcd562f5665d5fcb8652.tar.gz u-boot-imx-05cbd985c0b9b5319355fcd562f5665d5fcb8652.tar.bz2 |
x86: Don't try to run the VGA BIOS in 64-bit mode
This is not supported, so disable it for now.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/pci_rom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/pci_rom.c b/drivers/pci/pci_rom.c index cd083f7..57204c4 100644 --- a/drivers/pci/pci_rom.c +++ b/drivers/pci/pci_rom.c @@ -334,7 +334,7 @@ int dm_pci_run_vga_bios(struct udevice *dev, int (*int15_handler)(void), goto err; #endif } else { -#ifdef CONFIG_X86 +#if defined(CONFIG_X86) && CONFIG_IS_ENABLED(X86_32BIT_INIT) bios_set_interrupt_handler(0x15, int15_handler); bios_run_on_x86(dev, (unsigned long)ram, vesa_mode, |