aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/perf
diff options
context:
space:
mode:
authorMichael Ellerman <michael@ellerman.id.au>2012-08-19 17:44:01 -0400
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2012-09-05 01:19:35 -0400
commitd3dbeef657fdc9e870e0b01f811bbb906af052f8 (patch)
tree85f19e5f69ac6ae8d71bc8d9d6bd6d6ef70a4395 /arch/powerpc/perf
parentd1cfc0ce5d3196ccd88b9d868bb7cbcab61e0a31 (diff)
powerpc: Rename 64-bit PVR constants to PVR_foo
We have an old FIXME in reg.h which points out that we should standardise on PVR_foo for our PVR #defines. Currently we use PVR_ on 32-bit and PV_ on 64-bit. So do that rename and remove the FIXME. Seeing as we're touching all but one usage of __is_processor(), rename it to something less ugly and more indicative of what it does, which is simply to check the PVR version. Signed-off-by: Michael Ellerman <michael@ellerman.id.au> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/perf')
-rw-r--r--arch/powerpc/perf/core-book3s.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/perf/core-book3s.c b/arch/powerpc/perf/core-book3s.c
index 77b49ddda9d3..331cf090857d 100644
--- a/arch/powerpc/perf/core-book3s.c
+++ b/arch/powerpc/perf/core-book3s.c
@@ -1396,7 +1396,7 @@ static bool pmc_overflow(unsigned long val)
1396 * PMCs because a user might set a period of less than 256 and we 1396 * PMCs because a user might set a period of less than 256 and we
1397 * don't want to mistakenly reset them. 1397 * don't want to mistakenly reset them.
1398 */ 1398 */
1399 if (__is_processor(PV_POWER7) && ((0x80000000 - val) <= 256)) 1399 if (pvr_version_is(PVR_POWER7) && ((0x80000000 - val) <= 256))
1400 return true; 1400 return true;
1401 1401
1402 return false; 1402 return false;