| .. | .. |
|---|
| 7 | 7 | #include <string.h> |
|---|
| 8 | 8 | #include <linux/coresight-pmu.h> |
|---|
| 9 | 9 | #include <linux/perf_event.h> |
|---|
| 10 | +#include <linux/string.h> |
|---|
| 10 | 11 | |
|---|
| 11 | | -#include "cs-etm.h" |
|---|
| 12 | 12 | #include "arm-spe.h" |
|---|
| 13 | 13 | #include "../../util/pmu.h" |
|---|
| 14 | 14 | |
|---|
| .. | .. |
|---|
| 19 | 19 | if (!strcmp(pmu->name, CORESIGHT_ETM_PMU_NAME)) { |
|---|
| 20 | 20 | /* add ETM default config here */ |
|---|
| 21 | 21 | pmu->selectable = true; |
|---|
| 22 | | - pmu->set_drv_config = cs_etm_set_drv_config; |
|---|
| 23 | 22 | #if defined(__aarch64__) |
|---|
| 24 | 23 | } else if (strstarts(pmu->name, ARM_SPE_PMU_NAME)) { |
|---|
| 25 | 24 | return arm_spe_pmu_default_config(pmu); |
|---|