aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge
diff options
context:
space:
mode:
authorCorey Osgood <corey.osgood@gmail.com>2008-12-18 19:37:11 +0000
committerCorey Osgood <corey.osgood@gmail.com>2008-12-18 19:37:11 +0000
commit809242a71593e2a1b9661b956f2b952a911b2d4e (patch)
tree8522440108c77c1ba2db9863fed19a37437b7ad2 /src/northbridge
parent43bb9cddddf90b996e6862d261024c9149fdd59c (diff)
Fix implicit declaration in cn700/vt8237 code
Signed-off-by: Corey Osgood <corey.osgood@gmail.com> Acked-by: Myles Watson <mylesgw@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3819 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge')
-rw-r--r--src/northbridge/via/cn700/vga.c1
-rw-r--r--src/northbridge/via/cn700/vgachip.h5
2 files changed, 6 insertions, 0 deletions
diff --git a/src/northbridge/via/cn700/vga.c b/src/northbridge/via/cn700/vga.c
index 11bcb1e0eb..6cc885fd4b 100644
--- a/src/northbridge/via/cn700/vga.c
+++ b/src/northbridge/via/cn700/vga.c
@@ -36,6 +36,7 @@
#include "chip.h"
#include "northbridge.h"
#include "cn700.h"
+#include "vgachip.h"
void write_protect_vgabios(void)
{
diff --git a/src/northbridge/via/cn700/vgachip.h b/src/northbridge/via/cn700/vgachip.h
index 0a5e631465..038ffec3ec 100644
--- a/src/northbridge/via/cn700/vgachip.h
+++ b/src/northbridge/via/cn700/vgachip.h
@@ -27,4 +27,9 @@ struct pc80_vgabios_config {
int nothing;
};
+void vga_enable_console(void);
+void do_vgabios(void);
+void setup_realmode_idt(void);
+void write_protect_vgabios(void);
+
#endif /* _PC80_VGABIOS */