diff options
author | Mark Rutland <mark.rutland@arm.com> | 2018-02-05 19:41:57 +0300 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2018-02-20 14:34:53 +0300 |
commit | d3d5aac206b4e9e569a22fe1811c909dde17587c (patch) | |
tree | 7237daa6fe900a105abb946f4622c81d3212cef6 /include/linux/perf | |
parent | c0248c96631f38f02d58762fc018e316843acac8 (diff) | |
download | linux-d3d5aac206b4e9e569a22fe1811c909dde17587c.tar.xz |
arm_pmu: fold platform helpers into platform code
The armpmu_{request,free}_irqs() helpers are only used by
arm_pmu_platform.c, so let's fold them in and make them static.
Signed-off-by: Mark Rutland <mark.rutland@arm.com>
Cc: Will Deacon <will.deacon@arm.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'include/linux/perf')
-rw-r--r-- | include/linux/perf/arm_pmu.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/perf/arm_pmu.h b/include/linux/perf/arm_pmu.h index 712764b35c6a..899bc7ef0881 100644 --- a/include/linux/perf/arm_pmu.h +++ b/include/linux/perf/arm_pmu.h @@ -159,8 +159,6 @@ static inline int arm_pmu_acpi_probe(armpmu_init_fn init_fn) { return 0; } struct arm_pmu *armpmu_alloc(void); void armpmu_free(struct arm_pmu *pmu); int armpmu_register(struct arm_pmu *pmu); -int armpmu_request_irqs(struct arm_pmu *armpmu); -void armpmu_free_irqs(struct arm_pmu *armpmu); int armpmu_request_irq(struct arm_pmu *armpmu, int cpu); void armpmu_free_irq(struct arm_pmu *armpmu, int cpu); |