svn commit: r281721 - head/sys/sys

Justin Hibbits jhibbits at FreeBSD.org
Sun Apr 19 00:33:22 UTC 2015


Author: jhibbits
Date: Sun Apr 19 00:33:21 2015
New Revision: 281721
URL: https://svnweb.freebsd.org/changeset/base/281721

Log:
  Fix the build.  Commit the last part of e500 PMC.
  
  Pointy hat to:	jhibbits

Modified:
  head/sys/sys/pmc.h

Modified: head/sys/sys/pmc.h
==============================================================================
--- head/sys/sys/pmc.h	Sun Apr 19 00:29:02 2015	(r281720)
+++ head/sys/sys/pmc.h	Sun Apr 19 00:33:21 2015	(r281721)
@@ -102,6 +102,8 @@
 	__PMC_CPU(MIPS_OCTEON,  0x201,  "Cavium Octeon")	\
 	__PMC_CPU(MIPS_74K,     0x202,  "MIPS 74K")		\
 	__PMC_CPU(PPC_7450,     0x300,  "PowerPC MPC7450")	\
+	__PMC_CPU(PPC_E500,     0x340,  "PowerPC e500 Core")	\
+	__PMC_CPU(PPC_MPC85XX,  0x340,  "Freescale PowerPC MPC85XX")	\
 	__PMC_CPU(PPC_970,      0x380,  "IBM PowerPC 970")	\
 	__PMC_CPU(GENERIC, 	0x400,  "Generic")
 
@@ -136,6 +138,7 @@ enum pmc_cputype {
 	__PMC_CLASS(MIPS74K)	/* MIPS 74K */				\
 	__PMC_CLASS(PPC7450)	/* Motorola MPC7450 class */		\
 	__PMC_CLASS(PPC970)	/* IBM PowerPC 970 class */		\
+	__PMC_CLASS(E500)	/* Freescale e500 class */		\
 	__PMC_CLASS(SOFT)	/* Software events */
 
 enum pmc_class {


More information about the svn-src-head mailing list