[SeaBIOS] [PATCH RFC 2/7] Rename CONFIG_VBE in CONFIG_VGA_BOCHS and CONFIG_CIRRUS in CONFIG_VGA_CIRRUS

Julian Pidancet julian.pidancet at gmail.com
Fri Dec 16 15:15:08 CET 2011


Signed-off-by: Julian Pidancet <julian.pidancet at gmail.com>
---
 vgasrc/vga.c       |   18 +++++++++---------
 vgasrc/vgatables.h |    4 ++--
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/vgasrc/vga.c b/vgasrc/vga.c
index d734e23..b515d1d 100644
--- a/vgasrc/vga.c
+++ b/vgasrc/vga.c
@@ -17,8 +17,8 @@
 #include "vgatables.h" // find_vga_entry
 
 // XXX
-#define CONFIG_VBE 0
-#define CONFIG_CIRRUS 0
+#define CONFIG_VGA_BOCHS 0
+#define CONFIG_VGA_CIRRUS 0
 
 // XXX
 #define DEBUG_VGA_POST 1
@@ -359,11 +359,11 @@ handle_1000(struct bregs *regs)
     else
         regs->al = 0x30;
 
-    if (CONFIG_CIRRUS)
+    if (CONFIG_VGA_CIRRUS)
         cirrus_set_video_mode(mode);
 
-    if (CONFIG_VBE)
-        if (vbe_has_vbe_display())
+    if (CONFIG_VGA_BOCHS)
+        if (bochs_has_vbe_display())
             dispi_set_enable(VBE_DISPI_DISABLED);
 
     // find the entry in the video modes
@@ -1263,7 +1263,7 @@ handle_104fXX(struct bregs *regs)
 static void
 handle_104f(struct bregs *regs)
 {
-    if (! CONFIG_VBE || !vbe_has_vbe_display()) {
+    if (! CONFIG_VGA_BOCHS || !bochs_has_vbe_display()) {
         handle_104fXX(regs);
         return;
     }
@@ -1364,13 +1364,13 @@ vga_post(struct bregs *regs)
 
     init_bios_area();
 
-    if (CONFIG_VBE)
-        vbe_init();
+    if (CONFIG_VGA_BOCHS)
+        bochs_init();
 
     extern void entry_10(void);
     SET_IVT(0x10, SEGOFF(get_global_seg(), (u32)entry_10));
 
-    if (CONFIG_CIRRUS)
+    if (CONFIG_VGA_CIRRUS)
         cirrus_init();
 
     // XXX - clear screen and display info
diff --git a/vgasrc/vgatables.h b/vgasrc/vgatables.h
index 1e76b3a..1f877c5 100644
--- a/vgasrc/vgatables.h
+++ b/vgasrc/vgatables.h
@@ -211,7 +211,7 @@ void cirrus_init(void);
 // vbe.c -- not implemented yet.
 #define VBE_DISPI_DISABLED              0x00
 void dispi_set_enable(int enable);
-void vbe_init(void);
-int vbe_has_vbe_display(void);
+void bochs_init(void);
+int bochs_has_vbe_display(void);
 
 #endif // vgatables.h
-- 
Julian Pidancet




More information about the SeaBIOS mailing list