mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
serial: Factor out common serial_hds_isa_init()
It's the same old loop copied five times, plus another instance where it's clipped to two iterations and unrolled. No external users of serial_isa_init() are left, so give it internal linkage. Maintainers of affected machines cc'ed. Cc: Richard Henderson <rth@twiddle.net> Cc: Anthony Liguori <aliguori@amazon.com> Cc: "Michael S. Tsirkin" <mst@redhat.com> Cc: Aurelien Jarno <aurelien@aurel32.net> Cc: Leon Alrae <leon.alrae@imgtec.com> Cc: Blue Swirl <blauwirbel@gmail.com> Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
aef0d55a4b
commit
b6607a1a20
8 changed files with 22 additions and 30 deletions
|
@ -277,7 +277,6 @@ static void mips_fulong2e_init(MachineState *machine)
|
|||
PCIBus *pci_bus;
|
||||
ISABus *isa_bus;
|
||||
I2CBus *smbus;
|
||||
int i;
|
||||
DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
|
||||
MIPSCPU *cpu;
|
||||
CPUMIPSState *env;
|
||||
|
@ -384,11 +383,7 @@ static void mips_fulong2e_init(MachineState *machine)
|
|||
|
||||
rtc_init(isa_bus, 2000, NULL);
|
||||
|
||||
for(i = 0; i < MAX_SERIAL_PORTS; i++) {
|
||||
if (serial_hds[i]) {
|
||||
serial_isa_init(isa_bus, i, serial_hds[i]);
|
||||
}
|
||||
}
|
||||
serial_hds_isa_init(isa_bus, MAX_SERIAL_PORTS);
|
||||
|
||||
if (parallel_hds[0]) {
|
||||
parallel_init(isa_bus, 0, parallel_hds[0]);
|
||||
|
|
|
@ -1172,8 +1172,7 @@ void mips_malta_init(MachineState *machine)
|
|||
isa_create_simple(isa_bus, "i8042");
|
||||
|
||||
rtc_init(isa_bus, 2000, NULL);
|
||||
serial_isa_init(isa_bus, 0, serial_hds[0]);
|
||||
serial_isa_init(isa_bus, 1, serial_hds[1]);
|
||||
serial_hds_isa_init(isa_bus, 2);
|
||||
if (parallel_hds[0])
|
||||
parallel_init(isa_bus, 0, parallel_hds[0]);
|
||||
for(i = 0; i < MAX_FD; i++) {
|
||||
|
|
|
@ -283,11 +283,7 @@ void mips_r4k_init(MachineState *machine)
|
|||
|
||||
pit = pit_init(isa_bus, 0x40, 0, NULL);
|
||||
|
||||
for(i = 0; i < MAX_SERIAL_PORTS; i++) {
|
||||
if (serial_hds[i]) {
|
||||
serial_isa_init(isa_bus, i, serial_hds[i]);
|
||||
}
|
||||
}
|
||||
serial_hds_isa_init(isa_bus, MAX_SERIAL_PORTS);
|
||||
|
||||
isa_vga_init(isa_bus);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue