aboutsummaryrefslogtreecommitdiffstats
path: root/vgasrc/clext.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2011-12-31 18:39:59 -0500
committerKevin O'Connor <kevin@koconnor.net>2011-12-31 18:41:51 -0500
commit6f775088925a9b1ed3ded58e05d7ee276366166f (patch)
tree5d412091c955dc0f928d0fa9077f6277b70d3c38 /vgasrc/clext.c
parent821d6b410e02897f84c4b732f3678f64e396c9cf (diff)
downloadseabios-6f775088925a9b1ed3ded58e05d7ee276366166f.tar.gz
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/clext.c')
-rw-r--r--vgasrc/clext.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/vgasrc/clext.c b/vgasrc/clext.c
index 7774ba3c..70717497 100644
--- a/vgasrc/clext.c
+++ b/vgasrc/clext.c
@@ -5,7 +5,8 @@
//
// This file may be distributed under the terms of the GNU LGPLv3 license.
-#include "vgabios.h" // cirrus_init
+#include "clext.h" // clext_init
+#include "vgabios.h" // VBE_VENDOR_STRING
#include "biosvar.h" // GET_GLOBAL
#include "util.h" // dprintf
#include "bregs.h" // struct bregs
@@ -392,7 +393,7 @@ cirrus_clear_vram(u16 param)
}
int
-cirrus_set_video_mode(u8 mode, u8 noclearmem)
+clext_set_video_mode(u8 mode, u8 noclearmem)
{
dprintf(1, "cirrus mode %d\n", mode);
SET_BDA(vbe_mode, 0);
@@ -932,7 +933,7 @@ cirrus_vesa(struct bregs *regs)
****************************************************************/
void
-cirrus_init(void)
+clext_init(void)
{
dprintf(1, "cirrus init\n");
if (! cirrus_check())