This series reorganizes the vgabios headers so that there is just one header for each C file, except for vgautil.h which is used for C files that only need simple function and variable extern definitions.
-Kevin
Kevin O'Connor (5): vgafb: Move header definitions from vgabios.h to new file vgafb.h vgainit: Move video param setup to stdvga_build_video_param() vgautil: Add new header file with misc function and variable definitions vgautil: Move generic definitions from stdvga.h to vgautil.h vgautil: Move definitions from cbvga.h and clext.h to vgautil.h
vgasrc/bochsvga.c | 5 +-- vgasrc/cbvga.c | 5 +-- vgasrc/cbvga.h | 20 ------------ vgasrc/clext.c | 4 +-- vgasrc/clext.h | 20 ------------ vgasrc/geodevga.c | 3 +- vgasrc/stdvga.c | 1 + vgasrc/stdvga.h | 32 +------------------ vgasrc/stdvgaio.c | 3 +- vgasrc/stdvgamodes.c | 13 +++++++- vgasrc/swcursor.c | 4 ++- vgasrc/vbe.c | 8 ++++- vgasrc/vgabios.c | 4 ++- vgasrc/vgabios.h | 72 +++-------------------------------------- vgasrc/vgafb.c | 4 ++- vgasrc/vgafb.h | 42 ++++++++++++++++++++++++ vgasrc/vgafonts.c | 2 +- vgasrc/vgahw.h | 3 +- vgasrc/vgainit.c | 11 ++----- vgasrc/vgautil.h | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 20 files changed, 182 insertions(+), 164 deletions(-) delete mode 100644 vgasrc/cbvga.h delete mode 100644 vgasrc/clext.h create mode 100644 vgasrc/vgafb.h create mode 100644 vgasrc/vgautil.h