mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
sun4uv: fix serial initialization regression
Since commit b6607a1a20
, serial_hds_isa_init() was introduced to
factor out serial_isa_init() loops. However, sun4uv shouldn't start from
0 when there is a mm serial on 0 already. Add a "from" argument to
serial_hds_isa_init().
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20161022095318.17775-5-marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
5c936a83c3
commit
4496dc49ec
8 changed files with 11 additions and 10 deletions
|
@ -824,7 +824,7 @@ static void sun4uv_init(MemoryRegion *address_space_mem,
|
|||
i++;
|
||||
}
|
||||
|
||||
serial_hds_isa_init(isa_bus, MAX_SERIAL_PORTS);
|
||||
serial_hds_isa_init(isa_bus, i, MAX_SERIAL_PORTS);
|
||||
parallel_hds_isa_init(isa_bus, MAX_PARALLEL_PORTS);
|
||||
|
||||
for(i = 0; i < nb_nics; i++)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue