68cdd3d2af
The cxl_mem module was renamed cxl_pci in commit 21e9f76733
("cxl:
Rename mem to pci"). In preparation for adding an ancillary driver for
cxl_memdev devices (registered on the cxl bus by cxl_pci), go ahead and
rename CONFIG_CXL_MEM to CONFIG_CXL_PCI. Free up the CXL_MEM name for
that new driver to manage CXL.mem endpoint operations.
Suggested-by: Dan Williams <dan.j.williams@intel.com>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Ben Widawsky <ben.widawsky@intel.com>
Link: https://lore.kernel.org/r/164298412409.3018233.12407355692407890752.stgit@dwillia2-desk3.amr.corp.intel.com
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
10 lines
237 B
Makefile
10 lines
237 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_CXL_BUS) += core/
|
|
obj-$(CONFIG_CXL_PCI) += 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
|