vga: Fix bug in stdvga_get_linesize()

Add required GET_GLOBAL() macro to vmode_g access.

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor 2017-08-29 14:38:19 -04:00
parent b404a5f417
commit ef5fdc99b7
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ stdvga_set_dacformat(struct vgamode_s *vmode_g, int val)
int
stdvga_get_linesize(struct vgamode_s *vmode_g)
{
return DIV_ROUND_UP(vmode_g->width * vga_bpp(vmode_g), 8);
return DIV_ROUND_UP(GET_GLOBAL(vmode_g->width) * vga_bpp(vmode_g), 8);
}
/****************************************************************