mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 08:58:07 +00:00
5161a55c06
CXL core is growing, and it's already arguably unmanageable. To support future growth, move core functionality to a new directory and rename the file to represent just bus support. Future work will remove non-bus functionality. Note that mem.h is renamed to cxlmem.h to avoid a namespace collision with the global ARCH=um mem.h header. Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Ben Widawsky <ben.widawsky@intel.com> Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Link: https://lore.kernel.org/r/162792537866.368511.8915631504621088321.stgit@dwillia2-desk3.amr.corp.intel.com Signed-off-by: Dan Williams <dan.j.williams@intel.com>
9 lines
237 B
Makefile
9 lines
237 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_CXL_BUS) += core/
|
|
obj-$(CONFIG_CXL_MEM) += cxl_pci.o
|
|
obj-$(CONFIG_CXL_ACPI) += cxl_acpi.o
|
|
obj-$(CONFIG_CXL_PMEM) += cxl_pmem.o
|
|
|
|
cxl_pci-y := pci.o
|
|
cxl_acpi-y := acpi.o
|
|
cxl_pmem-y := pmem.o
|