From 63977905a05fe36deac4aee9ef28bec8a13be402 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Thu, 23 Oct 2014 16:24:36 -0400 Subject: vgabios: Move standard table definitions to std/vga.h Move the standard video bios definitions into a new header file. Also, define a struct with the layout for the static functionality table. Signed-off-by: Kevin O'Connor --- vgasrc/stdvgamodes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vgasrc/stdvgamodes.c') diff --git a/vgasrc/stdvgamodes.c b/vgasrc/stdvgamodes.c index 8436729..53b7463 100644 --- a/vgasrc/stdvgamodes.c +++ b/vgasrc/stdvgamodes.c @@ -9,7 +9,7 @@ #include "output.h" // warn_internalerror #include "stdvga.h" // stdvga_find_mode #include "string.h" // memcpy_far -#include "vgabios.h" // struct VideoParamTableEntry_s +#include "vgabios.h" // video_param_table /**************************************************************** @@ -363,7 +363,7 @@ stdvga_build_video_param(void) int mode = GET_GLOBAL(parammodes[i]); if (! mode) continue; - struct VideoParam_s *vparam_g = &video_param_table[i]; + struct video_param_s *vparam_g = &video_param_table[i]; struct vgamode_s *vmode_g = stdvga_find_mode(mode); if (!vmode_g) continue; -- cgit v1.1