1 # SPDX-License-Identifier: GPL-2.0 2 # 3 # Makefile PCI and non-PCI devices in PA-RISC machines 4 # 5 # Keep the order below, e.g. 6 # - ccio before any potential subdevices 7 # - gsc is required before lasi and wax 8 # - asp and wax before the EISA adapters for the IRQ regions 9 # - EISA must come before PCI to be sure it gets IRQ region 10 # 11 12 obj-$(CONFIG_IOSAPIC) += iosapic.o 13 obj-$(CONFIG_IOMMU_SBA) += sba_iommu.o 14 obj-$(CONFIG_PCI_LBA) += lba_pci.o 15 obj-$(CONFIG_IOMMU_CCIO) += ccio-dma.o 16 17 obj-$(CONFIG_GSC) += gsc.o 18 obj-$(CONFIG_GSC_LASI) += lasi.o asp.o 19 obj-$(CONFIG_GSC_WAX) += wax.o 20 obj-$(CONFIG_EISA) += eisa.o eisa_enumerator.o eisa_eeprom.o 21 obj-$(CONFIG_HPPB) += hppb.o 22 obj-$(CONFIG_GSC_DINO) += dino.o 23 24 obj-$(CONFIG_SUPERIO) += superio.o 25 obj-$(CONFIG_CHASSIS_LCD_LED) += led.o 26 obj-$(CONFIG_PDC_STABLE) += pdc_stable.o 27 obj-y += power.o 28