diff options
author | Will Deacon <will.deacon@arm.com> | 2012-07-28 16:27:03 +0100 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2012-08-23 11:35:51 +0100 |
commit | f0d1bc47953743aef9d2ed5326bc5973a3db08ab (patch) | |
tree | da83dfd3a4ec6e92da3401a0563072bdfb3afccc /arch/arm/Kconfig | |
parent | 50243efde0993f6fe98f27a35692d0e8efdf7a0f (diff) | |
download | linux-f0d1bc47953743aef9d2ed5326bc5973a3db08ab.tar.gz linux-f0d1bc47953743aef9d2ed5326bc5973a3db08ab.tar.bz2 linux-f0d1bc47953743aef9d2ed5326bc5973a3db08ab.zip |
ARM: pmu: remove unused reservation mechanism
The PMU reservation mechanism was originally intended to allow OProfile
and perf-events to co-ordinate over access to the CPU PMU. Since then,
OProfile for ARM has moved to using perf as its backend, so the
reservation code is no longer used.
This patch removes the reservation code for the CPU PMU on ARM.
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 6d6e18fee9fe..1d5ce138b877 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1179,12 +1179,6 @@ config XSCALE_PMU depends on CPU_XSCALE default y -config CPU_HAS_PMU - depends on (CPU_V6 || CPU_V6K || CPU_V7 || XSCALE_PMU) && \ - (!ARCH_OMAP3 || OMAP3_EMU) - default y - bool - config MULTI_IRQ_HANDLER bool help @@ -1757,7 +1751,7 @@ config HIGHPTE config HW_PERF_EVENTS bool "Enable hardware performance counter support for perf events" - depends on PERF_EVENTS && CPU_HAS_PMU + depends on PERF_EVENTS default y help Enable hardware performance counter support for perf events. If |