22 lines · plain
1# SPDX-License-Identifier: GPL-2.02 3# Order is important here for the built-in case:4# - 'core' first for fundamental init5# - 'port' before platform root drivers like 'acpi' so that CXL-root ports6# are immediately enabled7# - 'mem' and 'pmem' before endpoint drivers so that memdevs are8# immediately enabled9# - 'pci' last, also mirrors the hardware enumeration hierarchy10obj-y += core/11obj-$(CONFIG_CXL_PORT) += cxl_port.o12obj-$(CONFIG_CXL_ACPI) += cxl_acpi.o13obj-$(CONFIG_CXL_PMEM) += cxl_pmem.o14obj-$(CONFIG_CXL_MEM) += cxl_mem.o15obj-$(CONFIG_CXL_PCI) += cxl_pci.o16 17cxl_port-y := port.o18cxl_acpi-y := acpi.o19cxl_pmem-y := pmem.o security.o20cxl_mem-y := mem.o21cxl_pci-y := pci.o22