diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2012-01-07 18:27:19 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2012-01-14 17:19:20 -0500 |
commit | 83047be58ee787b2f3651f6b40e08d54371ecd3a (patch) | |
tree | 25d6a61ad6e09a82c0821a70f0835815d5370307 /vgasrc/stdvga.h | |
parent | bb17d8446807d6fa5d03d42c9e60bff8c185469b (diff) | |
download | seabios-83047be58ee787b2f3651f6b40e08d54371ecd3a.tar.gz |
vgabios: Unify page size calculations; remove page size from vgamode_s.
The previous code could obtain the page size in different ways - from
vmode_g->sslength, from SCREEN_MEM_START, or by manually multiplying
cols and rows. Add a new func (calc_page_size) and use that in areas
that need to calculate the page size.
Convert readers of the page size to read it from the "video_pagesize"
entry in the BDA instead of recalculating it.
Remove the page size from struct vgamode_s (slength) as it is now
calculated dynamically. The new calculated versions are different
from the existing values exported in video_param_table. However, the
existing values (for CGA) did not look correct - I compared the values
to those exported by two other VGA BIOS manufacturers and used the
values that look more standard.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'vgasrc/stdvga.h')
-rw-r--r-- | vgasrc/stdvga.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/vgasrc/stdvga.h b/vgasrc/stdvga.h index 735022c3..2aabf1bb 100644 --- a/vgasrc/stdvga.h +++ b/vgasrc/stdvga.h @@ -53,7 +53,6 @@ struct vgamode_s { u8 cwidth; u8 cheight; u16 sstart; - u16 slength; u8 pelmask; u8 *dac; |