svn commit: r260180 - head/sys/dev/nand

Warner Losh imp at FreeBSD.org
Thu Jan 2 02:20:11 UTC 2014


Author: imp
Date: Thu Jan  2 02:20:10 2014
New Revision: 260180
URL: http://svnweb.freebsd.org/changeset/base/260180

Log:
  Make the comment match the code. Not sure why we calculate it this
  weird way, but didn't change that...

Modified:
  head/sys/dev/nand/nandbus.c

Modified: head/sys/dev/nand/nandbus.c
==============================================================================
--- head/sys/dev/nand/nandbus.c	Thu Jan  2 01:51:54 2014	(r260179)
+++ head/sys/dev/nand/nandbus.c	Thu Jan  2 02:20:10 2014	(r260180)
@@ -503,7 +503,7 @@ nandbus_wait_ready(device_t dev, uint8_t
 	struct timeval tv, tv2;
 
 	tv2.tv_sec = 0;
-	tv2.tv_usec = 50 * 5000; /* 10ms */
+	tv2.tv_usec = 50 * 5000; /* 250ms */
 
 	getmicrotime(&tv);
 	timevaladd(&tv, &tv2);


More information about the svn-src-all mailing list