diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2014-10-23 16:24:36 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2014-10-27 11:03:12 -0400 |
commit | 63977905a05fe36deac4aee9ef28bec8a13be402 (patch) | |
tree | 4a8bd5b041b9772a5773f7c64eee08a96ae1537e /vgasrc/stdvgamodes.c | |
parent | c5acee4d8da81b915f587586280d84d347b1e7df (diff) | |
download | seabios-63977905a05fe36deac4aee9ef28bec8a13be402.tar.gz |
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 <kevin@koconnor.net>
Diffstat (limited to 'vgasrc/stdvgamodes.c')
-rw-r--r-- | vgasrc/stdvgamodes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vgasrc/stdvgamodes.c b/vgasrc/stdvgamodes.c index 84367292..53b7463a 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; |