From c67914ac42374e61469de45a1bba5e163c1d2dee Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Mon, 1 Apr 2024 11:03:59 -0400 Subject: stdvga: Rename stdvga_set_text_block_specifier() to stdvga_set_font_location() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Kevin O'Connor --- vgasrc/stdvga.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'vgasrc/stdvga.c') diff --git a/vgasrc/stdvga.c b/vgasrc/stdvga.c index 4e2fb1fd..ed88edc8 100644 --- a/vgasrc/stdvga.c +++ b/vgasrc/stdvga.c @@ -154,13 +154,6 @@ stdvga_perform_gray_scale_summing(u16 start, u16 count) * Memory control ****************************************************************/ -// Set the video memory location of the start of character fonts -void -stdvga_set_text_block_specifier(u8 spec) -{ - stdvga_sequ_write(0x03, spec); -} - // Enable reads and writes to the given "plane" when in planar4 mode. void stdvga_planar4_plane(int plane) @@ -180,6 +173,13 @@ stdvga_planar4_plane(int plane) * Font loading ****************************************************************/ +// Set the video memory location of the start of character fonts +void +stdvga_set_font_location(u8 spec) +{ + stdvga_sequ_write(0x03, spec); +} + static void get_font_access(void) { -- cgit