Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 May 2014 22:15:57 +0000 (UTC)
From:      Ian Lepore <ian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r265936 - in stable/10/sys: arm/ti/am335x modules
Message-ID:  <201405122215.s4CMFvU5087043@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ian
Date: Mon May 12 22:15:57 2014
New Revision: 265936
URL: http://svnweb.freebsd.org/changeset/base/265936

Log:
  MFC r259099: Fix a small error in calculating length of DELAY().

Modified:
  stable/10/sys/arm/ti/am335x/am335x_dmtimer.c
  stable/10/sys/modules/Makefile

Modified: stable/10/sys/arm/ti/am335x/am335x_dmtimer.c
==============================================================================
--- stable/10/sys/arm/ti/am335x/am335x_dmtimer.c	Mon May 12 21:40:03 2014	(r265935)
+++ stable/10/sys/arm/ti/am335x/am335x_dmtimer.c	Mon May 12 22:15:57 2014	(r265936)
@@ -359,7 +359,7 @@ DELAY(int usec)
 	}
 
 	/* Get the number of times to count */
-	counts = usec * ((am335x_dmtimer_tc.tc_frequency / 1000000) + 1);
+	counts = usec * (am335x_dmtimer_tc.tc_frequency / 1000000) + 1;
 
 	first = am335x_dmtimer_tc_read_4(DMTIMER_TCRR);
 

Modified: stable/10/sys/modules/Makefile
==============================================================================
--- stable/10/sys/modules/Makefile	Mon May 12 21:40:03 2014	(r265935)
+++ stable/10/sys/modules/Makefile	Mon May 12 22:15:57 2014	(r265936)
@@ -2,6 +2,8 @@
 
 .include <bsd.own.mk>
 
+SUBDIR_PARALLEL=
+
 # Modules that include binary-only blobs of microcode should be selectable by
 # MK_SOURCELESS_UCODE option (see below).
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405122215.s4CMFvU5087043>