27d764c9c0
The pci_ide_create_devs() function is declared i hw/ide/qdev.c:
$ git grep ide_create_drive
hw/ide/pci.c:491: ide_create_drive(d->bus + bus[i], unit[i], hd_table[i]);
hw/ide/qdev.c:127:IDEDevice *ide_create_drive(IDEBus *bus, int unit, DriveInfo *drive)
include/hw/ide/internal.h:653:IDEDevice *ide_create_drive(IDEBus *bus, int unit, DriveInfo *drive);
Fix the correct symbol dependency to avoid build failure when
deselecting some machines:
/usr/bin/ld: libcommon.fa.p/hw_ide_pci.c.o: in function `pci_ide_create_devs':
hw/ide/pci.c:491: undefined reference to `ide_create_drive'
Fixes: 8f01b41e10
("ide: express dependencies with Kconfig")
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210515173716.358295-3-philmd@redhat.com>
Acked-by: John Snow <jsnow@redhat.com>
60 lines
763 B
Plaintext
60 lines
763 B
Plaintext
config IDE_CORE
|
|
bool
|
|
|
|
config IDE_QDEV
|
|
bool
|
|
select IDE_CORE
|
|
|
|
config IDE_PCI
|
|
bool
|
|
depends on PCI
|
|
select IDE_QDEV
|
|
|
|
config IDE_ISA
|
|
bool
|
|
depends on ISA_BUS
|
|
select IDE_QDEV
|
|
|
|
config IDE_PIIX
|
|
bool
|
|
select IDE_PCI
|
|
select IDE_QDEV
|
|
|
|
config IDE_CMD646
|
|
bool
|
|
select IDE_PCI
|
|
select IDE_QDEV
|
|
|
|
config IDE_MACIO
|
|
bool
|
|
select IDE_QDEV
|
|
|
|
config IDE_MMIO
|
|
bool
|
|
select IDE_QDEV
|
|
|
|
config IDE_VIA
|
|
bool
|
|
select IDE_PCI
|
|
select IDE_QDEV
|
|
|
|
config MICRODRIVE
|
|
bool
|
|
select IDE_QDEV
|
|
depends on PCMCIA
|
|
|
|
config AHCI
|
|
bool
|
|
select IDE_QDEV
|
|
|
|
config AHCI_ICH9
|
|
bool
|
|
default y if PCI_DEVICES
|
|
depends on PCI
|
|
select AHCI
|
|
|
|
config IDE_SII3112
|
|
bool
|
|
select IDE_PCI
|
|
select IDE_QDEV
|