mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
fd8af343a2
Rename the cppc_msr.c to cppc.c in x86 ACPI, that expects to use this file to cover more function implementation for ACPI CPPC beside MSR helpers. Naming as "cppc" is more straightforward as one of the functionalities under ACPI subsystem. Signed-off-by: Huang Rui <ray.huang@amd.com> [ rjw: Subject ] Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
12 lines
255 B
Makefile
12 lines
255 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_ACPI) += boot.o
|
|
obj-$(CONFIG_ACPI_SLEEP) += sleep.o wakeup_$(BITS).o
|
|
obj-$(CONFIG_ACPI_APEI) += apei.o
|
|
obj-$(CONFIG_ACPI_CPPC_LIB) += cppc.o
|
|
|
|
ifneq ($(CONFIG_ACPI_PROCESSOR),)
|
|
obj-y += cstate.o
|
|
endif
|
|
|