diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2011-12-31 04:24:20 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2011-12-31 04:24:20 -0500 |
commit | 88ca74183a521e6868bdee65398f7d51d790490b (patch) | |
tree | a25fc451789ab69dbf72eaabff1decc18feef95c /vgasrc/clext.c | |
parent | ed68e5b601ad283b48ced1f5b25b58c1b8d00815 (diff) | |
download | seabios-88ca74183a521e6868bdee65398f7d51d790490b.tar.gz |
vgabios: Rename vgahw_* functions to stdvga_*.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'vgasrc/clext.c')
-rw-r--r-- | vgasrc/clext.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vgasrc/clext.c b/vgasrc/clext.c index 764d05b3..7987d28a 100644 --- a/vgasrc/clext.c +++ b/vgasrc/clext.c @@ -353,12 +353,12 @@ cirrus_switch_mode(struct cirrus_mode_s *table) outb(0xff, VGAREG_PEL_MASK); u8 vesacolortype = GET_GLOBAL(table->vesacolortype); - u8 v = vgahw_get_single_palette_reg(0x10) & 0xfe; + u8 v = stdvga_get_single_palette_reg(0x10) & 0xfe; if (vesacolortype == 3) v |= 0x41; else if (vesacolortype) v |= 0x01; - vgahw_set_single_palette_reg(0x10, v); + stdvga_set_single_palette_reg(0x10, v); } static u8 |