PERFORCE change 92500 for review

Olivier Houchard cognet at FreeBSD.org
Mon Feb 27 16:46:40 PST 2006


http://perforce.freebsd.org/chv.cgi?CH=92500

Change 92500 by cognet at cognet on 2006/02/28 00:46:00

	Erm, fix delay. The parameter is ms, not us.

Affected files ...

.. //depot/projects/arm/src/sys/arm/at91/at91_st.c#5 edit

Differences ...

==== //depot/projects/arm/src/sys/arm/at91/at91_st.c#5 (text+ko) ====

@@ -176,7 +176,7 @@
 	uint32_t start, end, cur;
 
 	start = st_crtr();
-	n = (n * 1000000) / 32768;
+	n = (n * 1000) / 32768;
 	if (n <= 0)
 		n = 1;
 	end = (start + n) & ST_CRTR_MASK;


More information about the p4-projects mailing list