From: Jan Kiszka <jan.kis...@siemens.com> Fix copy&paste errors and reduce duplications of the BOCHS VBE ranges.
Signed-off-by: Jan Kiszka <jan.kis...@siemens.com> --- This and the previous patch unbreaks VGA over memory/master. hw/vga.c | 9 ++++----- 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/hw/vga.c b/hw/vga.c index 513a5f6..22160e8 100644 --- a/hw/vga.c +++ b/hw/vga.c @@ -2244,19 +2244,18 @@ static const MemoryRegionPortio vga_portio_list[] = { { 0x04, 2, 1, .read = vga_ioport_read, .write = vga_ioport_write }, /* 3b4 */ { 0x0a, 1, 1, .read = vga_ioport_read, .write = vga_ioport_write }, /* 3ba */ { 0x10, 16, 1, .read = vga_ioport_read, .write = vga_ioport_write }, /* 3c0 */ - { 0x14, 2, 1, .read = vga_ioport_read, .write = vga_ioport_write }, /* 3d4 */ - { 0x1a, 1, 1, .read = vga_ioport_read, .write = vga_ioport_write }, /* 3da */ + { 0x24, 2, 1, .read = vga_ioport_read, .write = vga_ioport_write }, /* 3d4 */ + { 0x2a, 1, 1, .read = vga_ioport_read, .write = vga_ioport_write }, /* 3da */ PORTIO_END_OF_LIST(), }; #ifdef CONFIG_BOCHS_VBE static const MemoryRegionPortio vbe_portio_list[] = { -# ifdef TARGET_I386 { 0, 1, 2, .read = vbe_ioport_read_index, .write = vbe_ioport_write_index }, +# ifdef TARGET_I386 { 1, 1, 2, .read = vbe_ioport_read_data, .write = vbe_ioport_write_data }, # else - { 0, 2, 2, .read = vbe_ioport_read_index, .write = vbe_ioport_write_index }, - { 2, 2, 2, .read = vbe_ioport_read_data, .write = vbe_ioport_write_data }, + { 2, 1, 2, .read = vbe_ioport_read_data, .write = vbe_ioport_write_data }, # endif PORTIO_END_OF_LIST(), };