aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-12-06 23:45:25 +0100
committerGerd Hoffmann <kraxel@redhat.com>2022-01-13 10:58:54 +0100
commit3ac25236ea6dd52a44c679ebd0a8126662d0ab4e (patch)
tree8b9bbc618b84e2c1ebc3536f996c8eaa457941b6 /include
parent1c6c0b9ec1c0d980d4f0ac2604c4f9fd9611034b (diff)
downloadqemu-3ac25236ea6dd52a44c679ebd0a8126662d0ab4e.zip
qemu-3ac25236ea6dd52a44c679ebd0a8126662d0ab4e.tar.gz
qemu-3ac25236ea6dd52a44c679ebd0a8126662d0ab4e.tar.bz2
hw/display: Rename VGA_ISA_MM -> VGA_MMIO
There is no ISA bus part in the MMIO VGA device, so rename: * hw/display/vga-isa-mm.c -> hw/display/vga-mmio.c * CONFIG_VGA_ISA_MM -> CONFIG_VGA_MMIO * ISAVGAMMState -> VGAMmioState * isa_vga_mm_init() -> vga_mmio_init() Reviewed-by: BALATON Zoltan <balaton@eik.bme.hu> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20211206224528.563588-2-f4bug@amsat.org> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/hw/display/vga.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/hw/display/vga.h b/include/hw/display/vga.h
index 5f7825e..c16a5c2 100644
--- a/include/hw/display/vga.h
+++ b/include/hw/display/vga.h
@@ -24,8 +24,7 @@ enum vga_retrace_method {
extern enum vga_retrace_method vga_retrace_method;
-int isa_vga_mm_init(hwaddr vram_base,
- hwaddr ctrl_base, int it_shift,
- MemoryRegion *address_space);
+int vga_mmio_init(hwaddr vram_base, hwaddr ctrl_base,
+ int it_shift, MemoryRegion *address_space);
#endif