diff options
| author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2017-10-17 13:44:19 -0300 |
|---|---|---|
| committer | Michael Tokarev <mjt@tls.msk.ru> | 2017-12-18 17:07:02 +0300 |
| commit | d10d69e39d921a7ca23458421195116ab4577c87 (patch) | |
| tree | 029565c45c50bc0e1610d5ef4ad165a1aeccfc58 /hw/display/vga.c | |
| parent | b1c439d1794a86536bf5f47d9823ff156a7d7433 (diff) | |
| download | focaccia-qemu-d10d69e39d921a7ca23458421195116ab4577c87.tar.gz focaccia-qemu-d10d69e39d921a7ca23458421195116ab4577c87.zip | |
hw/display/vga: "vga.h" only contains registers defs, rename it "vga_regs.h"
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'hw/display/vga.c')
| -rw-r--r-- | hw/display/vga.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/vga.c b/hw/display/vga.c index a64a0942da..ce95b40e5c 100644 --- a/hw/display/vga.c +++ b/hw/display/vga.c @@ -24,11 +24,11 @@ #include "qemu/osdep.h" #include "qapi/error.h" #include "hw/hw.h" -#include "vga.h" #include "ui/console.h" #include "hw/i386/pc.h" #include "hw/pci/pci.h" #include "vga_int.h" +#include "vga_regs.h" #include "ui/pixel_ops.h" #include "qemu/timer.h" #include "hw/xen/xen.h" |