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
This commit is contained in:
@@ -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 */
|
||||
|
Reference in New Issue
Block a user