diff options
author | Simon Glass <sjg@chromium.org> | 2014-11-14 20:56:28 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-11-25 06:34:14 -0700 |
commit | 176bf4ce0cb8ddf380f116860951641c4a700271 (patch) | |
tree | 4dbd850cf230fb64a89d9b81c30d1a7b32ecfa6a /drivers/video | |
parent | ed0a2fbf14f7f87c437eb5fd99a994fa5d12f07a (diff) | |
download | u-boot-176bf4ce0cb8ddf380f116860951641c4a700271.zip u-boot-176bf4ce0cb8ddf380f116860951641c4a700271.tar.gz u-boot-176bf4ce0cb8ddf380f116860951641c4a700271.tar.bz2 |
Introduce a header file for the BIOS emulator
We should have a public header so that users can avoid defining functions
themselves.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/ati_radeon_fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/ati_radeon_fb.c b/drivers/video/ati_radeon_fb.c index 618f5d9..5748951 100644 --- a/drivers/video/ati_radeon_fb.c +++ b/drivers/video/ati_radeon_fb.c @@ -19,6 +19,7 @@ #include <common.h> #include <command.h> +#include <bios_emul.h> #include <pci.h> #include <asm/processor.h> #include <asm/errno.h> @@ -544,7 +545,6 @@ void radeon_setmode_9200(int vesa_idx, int bpp) } #include "../bios_emulator/include/biosemu.h" -extern int BootVideoCardBIOS(pci_dev_t pcidev, BE_VGAInfo ** pVGAInfo, int cleanUp); int radeon_probe(struct radeonfb_info *rinfo) { |