diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2012-01-14 23:20:05 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2012-01-16 12:01:16 -0500 |
commit | 4ad2d107befe29a0f3b5e91ff5765082aad219b7 (patch) | |
tree | 4e9bd666dc9453431092c3b433ab08e4ae44ce27 | |
parent | aad3b695b782534908bfce0f0f60314cb4ea3694 (diff) | |
download | seabios-4ad2d107befe29a0f3b5e91ff5765082aad219b7.tar.gz |
vgabios: Rename vgatables.c to stdvgamodes.c.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | vgasrc/stdvga.h | 2 | ||||
-rw-r--r-- | vgasrc/stdvgamodes.c (renamed from vgasrc/vgatables.c) | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -171,7 +171,7 @@ $(OUT)bios.bin.elf $(OUT)bios.bin: $(OUT)rom.o tools/checkrom.py # VGA src files SRCVGA=src/output.c src/util.c src/pci.c \ vgasrc/vgabios.c vgasrc/vgafb.c vgasrc/vgafonts.c vgasrc/vbe.c \ - vgasrc/vgatables.c vgasrc/stdvga.c vgasrc/stdvgaio.c \ + vgasrc/stdvga.c vgasrc/stdvgamodes.c vgasrc/stdvgaio.c \ vgasrc/clext.c vgasrc/bochsvga.c vgasrc/geodevga.c CFLAGS16VGA = $(CFLAGS16INC) -g -Isrc diff --git a/vgasrc/stdvga.h b/vgasrc/stdvga.h index 0beb3450..9372127d 100644 --- a/vgasrc/stdvga.h +++ b/vgasrc/stdvga.h @@ -82,7 +82,7 @@ struct saveDACcolors { u8 color_select; }; -// vgatables.c +// stdvgamodes.c struct vgamode_s *stdvga_find_mode(int mode); void stdvga_build_video_param(void); diff --git a/vgasrc/vgatables.c b/vgasrc/stdvgamodes.c index 4a5350dc..94e273f7 100644 --- a/vgasrc/vgatables.c +++ b/vgasrc/stdvgamodes.c @@ -1,4 +1,4 @@ -// Tables used by VGA bios +// Standard VGA mode information. // // Copyright (C) 2009 Kevin O'Connor <kevin@koconnor.net> // Copyright (C) 2001-2008 the LGPL VGABios developers Team |