mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
3382388d71
Split intel_rapl.c to intel_rapl_common.c and intel_rapl_msr.c, where intel_rapl_common.c contains the common code that can be used by both MSR and MMIO interface. intel_rapl_msr.c contains the implementation of RAPL MSR interface. Reviewed-by: Pandruvada, Srinivas <srinivas.pandruvada@intel.com> Tested-by: Pandruvada, Srinivas <srinivas.pandruvada@intel.com> Signed-off-by: Zhang Rui <rui.zhang@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
6 lines
222 B
Makefile
6 lines
222 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-$(CONFIG_POWERCAP) += powercap_sys.o
|
|
obj-$(CONFIG_INTEL_RAPL_CORE) += intel_rapl_common.o
|
|
obj-$(CONFIG_INTEL_RAPL) += intel_rapl_msr.o
|
|
obj-$(CONFIG_IDLE_INJECT) += idle_inject.o
|