diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2020-06-28 20:58:14 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-06-28 20:58:14 +0200 |
commit | ae71d4bf0074a81cc04255c96e3de0a49b1d95fa (patch) | |
tree | 24901228d69e7dffac0326b0e1c81887820f01b8 /arch/x86/events | |
parent | Merge tag 'efi-urgent-2020-06-28' of git://git.kernel.org/pub/scm/linux/kerne... (diff) | |
parent | perf/x86/rapl: Fix RAPL config variable bug (diff) | |
download | linux-ae71d4bf0074a81cc04255c96e3de0a49b1d95fa.tar.xz linux-ae71d4bf0074a81cc04255c96e3de0a49b1d95fa.zip |
Merge tag 'perf-urgent-2020-06-28' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull perf fix from Ingo Molnar:
"A single Kbuild dependency fix"
* tag 'perf-urgent-2020-06-28' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
perf/x86/rapl: Fix RAPL config variable bug
Diffstat (limited to 'arch/x86/events')
-rw-r--r-- | arch/x86/events/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/events/Makefile b/arch/x86/events/Makefile index 12c42eba77ec..9933c0e8e97a 100644 --- a/arch/x86/events/Makefile +++ b/arch/x86/events/Makefile @@ -1,6 +1,6 @@ # SPDX-License-Identifier: GPL-2.0-only obj-y += core.o probe.o -obj-$(PERF_EVENTS_INTEL_RAPL) += rapl.o +obj-$(CONFIG_PERF_EVENTS_INTEL_RAPL) += rapl.o obj-y += amd/ obj-$(CONFIG_X86_LOCAL_APIC) += msr.o obj-$(CONFIG_CPU_SUP_INTEL) += intel/ |