diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2013-02-07 18:19:23 -0800 |
---|---|---|
committer | David Hendricks <dhendrix@chromium.org> | 2013-02-08 04:10:04 +0100 |
commit | 69e432eedd72516343cbafd73bed5b10915de0bf (patch) | |
tree | 9dd2d3c68199b0949ae39f9d2c9f0d176c6dc11e /src/device/oprom/realmode | |
parent | 87d6550c1f2a902592be6604921a7f557c264168 (diff) | |
download | coreboot-69e432eedd72516343cbafd73bed5b10915de0bf.tar.xz |
oprom: fix compilation for Qemu target (and possibly others)
Not sure why this didn't bite us earlier..
src/device/oprom/realmode/x86.c: In function 'fill_lb_framebuffer':
src/device/oprom/realmode/x86.c:272:13: error: dereferencing pointer to incomplete type
src/device/oprom/realmode/x86.c:274:13: error: dereferencing pointer to incomplete type
src/device/oprom/realmode/x86.c:275:13: error: dereferencing pointer to incomplete type
src/device/oprom/realmode/x86.c:276:13: error: dereferencing pointer to incomplete type
src/device/oprom/realmode/x86.c:278:13: error: dereferencing pointer to incomplete type
src/device/oprom/realmode/x86.c:280:13: error: dereferencing pointer to incomplete type
src/device/oprom/realmode/x86.c:281:13: error: dereferencing pointer to incomplete type
src/device/oprom/realmode/x86.c:283:13: error: dereferencing pointer to incomplete type
src/device/oprom/realmode/x86.c:284:13: error: dereferencing pointer to incomplete type
src/device/oprom/realmode/x86.c:286:13: error: dereferencing pointer to incomplete type
src/device/oprom/realmode/x86.c:287:13: error: dereferencing pointer to incomplete type
src/device/oprom/realmode/x86.c:289:13: error: dereferencing pointer to incomplete type
src/device/oprom/realmode/x86.c:290:13: error: dereferencing pointer to incomplete type
Change-Id: Ie3b0f731a7b995e954a26e745b07fc122088ca9f
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/2321
Tested-by: build bot (Jenkins)
Reviewed-by: David Hendricks <dhendrix@chromium.org>
Diffstat (limited to 'src/device/oprom/realmode')
-rw-r--r-- | src/device/oprom/realmode/x86.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/device/oprom/realmode/x86.c b/src/device/oprom/realmode/x86.c index 07eff0ddee..6e7699214a 100644 --- a/src/device/oprom/realmode/x86.c +++ b/src/device/oprom/realmode/x86.c @@ -33,6 +33,7 @@ #include <lib/jpeg.h> /* we use x86emu's register file representation */ #include <x86emu/regs.h> +#include <boot/coreboot_tables.h> /* to have a common register file for interrupt handlers */ X86EMU_sysEnv _X86EMU_env; |