From c6aadbe3ebca9865d47443d11933ef11bfe31085 Mon Sep 17 00:00:00 2001 From: Myles Watson Date: Tue, 20 Oct 2009 16:24:23 +0000 Subject: Fix #if CONFIG_VGA==1 -> #if CONFIG_VGA. (forgotten in last check in.) Signed-off-by: Myles Watson Acked-by: Uwe Hermann git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4817 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/include/pc80/vga.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include') 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 */ -- cgit v1.2.3