mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 12:23:53 -06:00

qdev.c is a mixture between IDE bus specific functions and IDE device functions. Let's split it up to make it more obvious which part is related to bus handling and which part is related to device handling. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com> Acked-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Message-ID: <20240220085505.30255-3-thuth@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
16 lines
1.1 KiB
Meson
16 lines
1.1 KiB
Meson
system_ss.add(when: 'CONFIG_AHCI', if_true: files('ahci.c'))
|
|
system_ss.add(when: 'CONFIG_AHCI_ICH9', if_true: files('ich.c'))
|
|
system_ss.add(when: 'CONFIG_ALLWINNER_A10', if_true: files('ahci-allwinner.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_BUS', if_true: files('ide-bus.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_CF', if_true: files('cf.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_CMD646', if_true: files('cmd646.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_CORE', if_true: files('core.c', 'atapi.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_DEV', if_true: files('ide-dev.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_ISA', if_true: files('isa.c', 'ioport.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_MACIO', if_true: files('macio.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_MMIO', if_true: files('mmio.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_PCI', if_true: files('pci.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_PIIX', if_true: files('piix.c', 'ioport.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_SII3112', if_true: files('sii3112.c'))
|
|
system_ss.add(when: 'CONFIG_IDE_VIA', if_true: files('via.c'))
|
|
system_ss.add(when: 'CONFIG_MICRODRIVE', if_true: files('microdrive.c'))
|