mirror of https://github.com/xemu-project/xemu.git
hw/i386: Fix linker error when ISAPC is disabled
v2: include config-devices.h to use CONFIG_IDE_ISA Message-Id: <20190705143554.10295-2-julio.montes@intel.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Julio Montes <julio.montes@intel.com>
This commit is contained in:
parent
6c22ea9d83
commit
60386ea270
|
@ -23,6 +23,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "qemu/osdep.h"
|
#include "qemu/osdep.h"
|
||||||
|
#include "config-devices.h"
|
||||||
|
|
||||||
#include "qemu/units.h"
|
#include "qemu/units.h"
|
||||||
#include "hw/hw.h"
|
#include "hw/hw.h"
|
||||||
|
@ -61,9 +62,11 @@
|
||||||
|
|
||||||
#define MAX_IDE_BUS 2
|
#define MAX_IDE_BUS 2
|
||||||
|
|
||||||
|
#ifdef CONFIG_IDE_ISA
|
||||||
static const int ide_iobase[MAX_IDE_BUS] = { 0x1f0, 0x170 };
|
static const int ide_iobase[MAX_IDE_BUS] = { 0x1f0, 0x170 };
|
||||||
static const int ide_iobase2[MAX_IDE_BUS] = { 0x3f6, 0x376 };
|
static const int ide_iobase2[MAX_IDE_BUS] = { 0x3f6, 0x376 };
|
||||||
static const int ide_irq[MAX_IDE_BUS] = { 14, 15 };
|
static const int ide_irq[MAX_IDE_BUS] = { 14, 15 };
|
||||||
|
#endif
|
||||||
|
|
||||||
/* PC hardware initialisation */
|
/* PC hardware initialisation */
|
||||||
static void pc_init1(MachineState *machine,
|
static void pc_init1(MachineState *machine,
|
||||||
|
@ -254,7 +257,10 @@ static void pc_init1(MachineState *machine,
|
||||||
}
|
}
|
||||||
idebus[0] = qdev_get_child_bus(&dev->qdev, "ide.0");
|
idebus[0] = qdev_get_child_bus(&dev->qdev, "ide.0");
|
||||||
idebus[1] = qdev_get_child_bus(&dev->qdev, "ide.1");
|
idebus[1] = qdev_get_child_bus(&dev->qdev, "ide.1");
|
||||||
} else {
|
pc_cmos_init(pcms, idebus[0], idebus[1], rtc_state);
|
||||||
|
}
|
||||||
|
#ifdef CONFIG_IDE_ISA
|
||||||
|
else {
|
||||||
for(i = 0; i < MAX_IDE_BUS; i++) {
|
for(i = 0; i < MAX_IDE_BUS; i++) {
|
||||||
ISADevice *dev;
|
ISADevice *dev;
|
||||||
char busname[] = "ide.0";
|
char busname[] = "ide.0";
|
||||||
|
@ -268,9 +274,9 @@ static void pc_init1(MachineState *machine,
|
||||||
busname[4] = '0' + i;
|
busname[4] = '0' + i;
|
||||||
idebus[i] = qdev_get_child_bus(DEVICE(dev), busname);
|
idebus[i] = qdev_get_child_bus(DEVICE(dev), busname);
|
||||||
}
|
}
|
||||||
|
pc_cmos_init(pcms, idebus[0], idebus[1], rtc_state);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
pc_cmos_init(pcms, idebus[0], idebus[1], rtc_state);
|
|
||||||
|
|
||||||
if (pcmc->pci_enabled && machine_usb(machine)) {
|
if (pcmc->pci_enabled && machine_usb(machine)) {
|
||||||
pci_create_simple(pci_bus, piix3_devfn + 2, "piix3-usb-uhci");
|
pci_create_simple(pci_bus, piix3_devfn + 2, "piix3-usb-uhci");
|
||||||
|
|
Loading…
Reference in New Issue