meson.build (b23317eec4715aa62de9a6e5490a01122c8eef0e) | meson.build (995d955647f197e6ad658050cb7b4c2ef94347a6) |
---|---|
1pci_ss = ss.source_set() 2pci_ss.add(when: 'CONFIG_PAM', if_true: files('pam.c')) 3pci_ss.add(when: 'CONFIG_PCI_BONITO', if_true: files('bonito.c')) 4pci_ss.add(when: 'CONFIG_PCI_EXPRESS_DESIGNWARE', if_true: files('designware.c')) 5pci_ss.add(when: 'CONFIG_PCI_EXPRESS_GENERIC_BRIDGE', if_true: files('gpex.c')) 6pci_ss.add(when: 'CONFIG_ACPI', if_true: files('gpex-acpi.c')) 7pci_ss.add(when: 'CONFIG_PCI_EXPRESS_Q35', if_true: files('q35.c')) 8pci_ss.add(when: 'CONFIG_PCI_EXPRESS_XILINX', if_true: files('xilinx-pcie.c')) --- 9 unchanged lines hidden (view full) --- 18# PowerPC E500 boards 19pci_ss.add(when: 'CONFIG_PPCE500_PCI', if_true: files('ppce500.c')) 20 21# ARM devices 22pci_ss.add(when: 'CONFIG_VERSATILE_PCI', if_true: files('versatile.c')) 23 24softmmu_ss.add_all(when: 'CONFIG_PCI', if_true: pci_ss) 25 | 1pci_ss = ss.source_set() 2pci_ss.add(when: 'CONFIG_PAM', if_true: files('pam.c')) 3pci_ss.add(when: 'CONFIG_PCI_BONITO', if_true: files('bonito.c')) 4pci_ss.add(when: 'CONFIG_PCI_EXPRESS_DESIGNWARE', if_true: files('designware.c')) 5pci_ss.add(when: 'CONFIG_PCI_EXPRESS_GENERIC_BRIDGE', if_true: files('gpex.c')) 6pci_ss.add(when: 'CONFIG_ACPI', if_true: files('gpex-acpi.c')) 7pci_ss.add(when: 'CONFIG_PCI_EXPRESS_Q35', if_true: files('q35.c')) 8pci_ss.add(when: 'CONFIG_PCI_EXPRESS_XILINX', if_true: files('xilinx-pcie.c')) --- 9 unchanged lines hidden (view full) --- 18# PowerPC E500 boards 19pci_ss.add(when: 'CONFIG_PPCE500_PCI', if_true: files('ppce500.c')) 20 21# ARM devices 22pci_ss.add(when: 'CONFIG_VERSATILE_PCI', if_true: files('versatile.c')) 23 24softmmu_ss.add_all(when: 'CONFIG_PCI', if_true: pci_ss) 25 |
26specific_ss.add(when: 'CONFIG_POWERNV', if_true: files( | 26specific_ss.add(when: 'CONFIG_PCI_POWERNV', if_true: files( |
27 'pnv_phb3.c', 28 'pnv_phb3_msi.c', 29 'pnv_phb3_pbcq.c', 30 'pnv_phb4.c', 31 'pnv_phb4_pec.c' 32)) | 27 'pnv_phb3.c', 28 'pnv_phb3_msi.c', 29 'pnv_phb3_pbcq.c', 30 'pnv_phb4.c', 31 'pnv_phb4_pec.c' 32)) |