diff options
author | arch import user (historical) <svn@openbios.org> | 2005-07-06 17:15:54 +0000 |
---|---|---|
committer | arch import user (historical) <svn@openbios.org> | 2005-07-06 17:15:54 +0000 |
commit | 1c8cd59f3c9248f0954a5cf215dc3652ccfc8da5 (patch) | |
tree | 7c19d8a922e2d0613a494c5949b2b6f45c388e13 /src/console | |
parent | 7e5fbd6fc03df87c9276b08219ca15ad17c43dac (diff) | |
download | coreboot-1c8cd59f3c9248f0954a5cf215dc3652ccfc8da5.tar.xz |
Revision: linuxbios@linuxbios.org--devel/freebios--devel--2.0--patch-38
Creator: Li-Ta Lo <ollie@lanl.gov>
emulator update
x96emu update from Paulo
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1954 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/console')
-rw-r--r-- | src/console/vga_console.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/console/vga_console.c b/src/console/vga_console.c index bdd56f3923..31e29f8dbb 100644 --- a/src/console/vga_console.c +++ b/src/console/vga_console.c @@ -10,16 +10,14 @@ #include <pc80/vga.h> #include <console/console.h> +//extern void beep(int ms); + /* The video buffer, should be replaced by symbol in ldscript.ld */ static char *vidmem; int vga_line, vga_col; -#if CONFIG_CONSOLE_VGA == 1 extern int vga_inited; // it will be changed in pci_rom.c -#else -int vga_inited = 0; -#endif static int vga_console_inited = 0; |