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

Bjoern A. Zeeb bz at FreeBSD.org
Tue Apr 26 15:34:02 UTC 2016


Author: bz
Date: Tue Apr 26 15:34:00 2016
New Revision: 298648
URL: https://svnweb.freebsd.org/changeset/base/298648

Log:
  Mark the unused period argument __unused.
  
  Reviewed by:	andrew
  MFC after:	2 weeks
  Sponsored by:	DARPA/AFRL

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

Modified: head/sys/arm/arm/generic_timer.c
==============================================================================
--- head/sys/arm/arm/generic_timer.c	Tue Apr 26 15:33:53 2016	(r298647)
+++ head/sys/arm/arm/generic_timer.c	Tue Apr 26 15:34:00 2016	(r298648)
@@ -221,7 +221,8 @@ arm_tmr_get_timecount(struct timecounter
 }
 
 static int
-arm_tmr_start(struct eventtimer *et, sbintime_t first, sbintime_t period)
+arm_tmr_start(struct eventtimer *et, sbintime_t first,
+    sbintime_t period __unused)
 {
 	struct arm_tmr_softc *sc;
 	int counts, ctrl;


More information about the svn-src-head mailing list