svn commit: r335161 - head/sys/arm/arm

Emmanuel Vadot manu at FreeBSD.org
Thu Jun 14 17:32:24 UTC 2018


Author: manu
Date: Thu Jun 14 17:32:23 2018
New Revision: 335161
URL: https://svnweb.freebsd.org/changeset/base/335161

Log:
  arm timer: Use the default get_cntxct by default
  
  Reported by:	kevans

Modified:
  head/sys/arm/arm/generic_timer.c

Modified: head/sys/arm/arm/generic_timer.c
==============================================================================
--- head/sys/arm/arm/generic_timer.c	Thu Jun 14 17:23:51 2018	(r335160)
+++ head/sys/arm/arm/generic_timer.c	Thu Jun 14 17:32:23 2018	(r335161)
@@ -402,7 +402,7 @@ arm_tmr_attach(device_t dev)
 	if (arm_tmr_sc)
 		return (ENXIO);
 
-	sc->get_cntxct = &get_cntxct_a64_unstable;
+	sc->get_cntxct = &get_cntxct;
 #ifdef FDT
 	/* Get the base clock frequency */
 	node = ofw_bus_get_node(dev);


More information about the svn-src-all mailing list