svn commit: r197550 - user/rpaulo/armpmc/dev/hwpmc

Rui Paulo rpaulo at FreeBSD.org
Sun Sep 27 22:57:02 UTC 2009


Author: rpaulo
Date: Sun Sep 27 22:57:02 2009
New Revision: 197550
URL: http://svn.freebsd.org/changeset/base/197550

Log:
  Add likely needed function placeholders.

Modified:
  user/rpaulo/armpmc/dev/hwpmc/hwpmc_xscale.c

Modified: user/rpaulo/armpmc/dev/hwpmc/hwpmc_xscale.c
==============================================================================
--- user/rpaulo/armpmc/dev/hwpmc/hwpmc_xscale.c	Sun Sep 27 22:50:17 2009	(r197549)
+++ user/rpaulo/armpmc/dev/hwpmc/hwpmc_xscale.c	Sun Sep 27 22:57:02 2009	(r197550)
@@ -41,6 +41,42 @@ struct xscale_event_code_map {
 	uint8_t		pe_mask;
 };
 
+
+static int
+xscale_read_pmc(int cpu, int ri, pmc_value_t *v)
+{
+}
+
+static int
+xscale_write_pmc(int cpu, int ri, pmc_value_t v)
+{
+}
+
+static int
+xscale_config_pmc(int cpu, int ri, struct pmc *pm)
+{
+}
+
+static int
+xscale_start_pmc(int cpu, int ri)
+{
+}
+
+static int
+xscale_stop_pmc(int cpu, int ri)
+{
+}
+
+static int
+xscale_intr(int cpu, struct trapframe *tf)
+{
+}
+
+static int
+xscale_describe(int cpu, int ri, struct pmc_info *pi, struct pmc **ppmc)
+{
+}
+
 struct pmc_mdep *
 pmc_xscale_initialize()
 {


More information about the svn-src-user mailing list