Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux...
[linux/fpc-iii.git] / tools / perf / arch / x86 / util / pmu.c
blob79fe07158d0092e42d369c6292aa211d2770eb19
1 #include <string.h>
3 #include <linux/perf_event.h>
5 #include "../../util/intel-pt.h"
6 #include "../../util/intel-bts.h"
7 #include "../../util/pmu.h"
9 struct perf_event_attr *perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
11 #ifdef HAVE_AUXTRACE_SUPPORT
12 if (!strcmp(pmu->name, INTEL_PT_PMU_NAME))
13 return intel_pt_pmu_default_config(pmu);
14 if (!strcmp(pmu->name, INTEL_BTS_PMU_NAME))
15 pmu->selectable = true;
16 #endif
17 return NULL;