]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - tools/perf/arch/x86/util/pmu.c
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / tools / perf / arch / x86 / util / pmu.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
5efb1d54
AH
2#include <string.h>
3
4#include <linux/perf_event.h>
5
6#include "../../util/intel-pt.h"
d0170af7 7#include "../../util/intel-bts.h"
5efb1d54
AH
8#include "../../util/pmu.h"
9
10struct perf_event_attr *perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
11{
12#ifdef HAVE_AUXTRACE_SUPPORT
13 if (!strcmp(pmu->name, INTEL_PT_PMU_NAME))
14 return intel_pt_pmu_default_config(pmu);
d0170af7
AH
15 if (!strcmp(pmu->name, INTEL_BTS_PMU_NAME))
16 pmu->selectable = true;
5efb1d54
AH
17#endif
18 return NULL;
19}