aboutsummaryrefslogtreecommitdiff
path: root/src/include/pc80
diff options
context:
space:
mode:
authorMyles Watson <mylesgw@gmail.com>2009-10-20 16:24:23 +0000
committerMyles Watson <mylesgw@gmail.com>2009-10-20 16:24:23 +0000
commitc6aadbe3ebca9865d47443d11933ef11bfe31085 (patch)
tree0338ae6c217d70dc3af76c1ede8238fe457f0294 /src/include/pc80
parent8f74c5878dde6b610b416a5950de3219532c0f83 (diff)
Fix #if CONFIG_VGA==1 -> #if CONFIG_VGA.
(forgotten in last check in.) Signed-off-by: Myles Watson <mylesgw@gmail.com> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4817 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/include/pc80')
-rw-r--r--src/include/pc80/vga.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/pc80/vga.h b/src/include/pc80/vga.h
index e71a214d0b..d4dea873b3 100644
--- a/src/include/pc80/vga.h
+++ b/src/include/pc80/vga.h
@@ -24,7 +24,7 @@
#define VGA_COLUMNS 80
#define VGA_LINES 25
-#if (CONFIG_VGA == 1)
+#if CONFIG_VGA
void vga_io_init(void);
@@ -38,6 +38,6 @@ void vga_frame_set(unsigned int line, unsigned int character);
void vga_line_write(unsigned int line, const char *string);
-#endif /* (CONFIG_VGA == 1) */
+#endif /* CONFIG_VGA */
#endif /* VGA_H */