diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2011-12-31 18:39:59 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2011-12-31 18:41:51 -0500 |
commit | 6f775088925a9b1ed3ded58e05d7ee276366166f (patch) | |
tree | 5d412091c955dc0f928d0fa9077f6277b70d3c38 /vgasrc/vgabios.c | |
parent | 821d6b410e02897f84c4b732f3678f64e396c9cf (diff) | |
download | seabios-hppa-6f775088925a9b1ed3ded58e05d7ee276366166f.zip seabios-hppa-6f775088925a9b1ed3ded58e05d7ee276366166f.tar.gz seabios-hppa-6f775088925a9b1ed3ded58e05d7ee276366166f.tar.bz2 |
vgabios: Create clext.h and use "clext_" as prefix for exported funcs.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'vgasrc/vgabios.c')
-rw-r--r-- | vgasrc/vgabios.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/vgasrc/vgabios.c b/vgasrc/vgabios.c index d7c559a..203a394 100644 --- a/vgasrc/vgabios.c +++ b/vgasrc/vgabios.c @@ -20,6 +20,7 @@ #include "stdvga.h" // stdvga_set_mode #include "geodelx.h" // geodelx_init #include "bochsvga.h" // bochsvga_init +#include "clext.h" // clext_init // XXX #define DEBUG_VGA_POST 1 @@ -389,7 +390,7 @@ handle_1000(struct bregs *regs) regs->al = 0x30; if (CONFIG_VGA_CIRRUS) { - int ret = cirrus_set_video_mode(mode, noclearmem); + int ret = clext_set_video_mode(mode, noclearmem); if (ret) return; } @@ -1213,7 +1214,7 @@ vga_post(struct bregs *regs) SET_IVT(0x10, SEGOFF(get_global_seg(), (u32)entry_10)); if (CONFIG_VGA_CIRRUS) - cirrus_init(); + clext_init(); // XXX - clear screen and display info |