Skip to content

Commit 16accae

Browse files
Stephane EranianIngo Molnar
authored andcommitted
perf/x86/rapl: Fix RAPL config variable bug
This patch fixes a bug introduced by: fd3ae1e ("perf/x86/rapl: Move RAPL support to common x86 code") The Kconfig variable name was wrong. It was missing the CONFIG_ prefix. Signed-off-by: Stephane Eranian <eraniangoogle.com> Signed-off-by: Ingo Molnar <[email protected]> Tested-by: Kim Phillips <[email protected]> Acked-by: Peter Zijlstra <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 4e90912 commit 16accae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/x86/events/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-License-Identifier: GPL-2.0-only
22
obj-y += core.o probe.o
3-
obj-$(PERF_EVENTS_INTEL_RAPL) += rapl.o
3+
obj-$(CONFIG_PERF_EVENTS_INTEL_RAPL) += rapl.o
44
obj-y += amd/
55
obj-$(CONFIG_X86_LOCAL_APIC) += msr.o
66
obj-$(CONFIG_CPU_SUP_INTEL) += intel/

0 commit comments

Comments
 (0)