Re: [U-Boot] [PATCH 17/21] time: Update mdelay() to delay in one large chunk

2018-12-05 Thread sjg
The current function delays in one millisecond at a time. This does not work well on sandbox since it results in lots of calls to usleep(1000) in a tight loop. This makes the sleep duration quite variable since each call results in a sleep of *at least* 1000us, but possibly more. Depending on how b

[U-Boot] [PATCH 17/21] time: Update mdelay() to delay in one large chunk

2018-11-23 Thread Simon Glass
The current function delays in one millisecond at a time. This does not work well on sandbox since it results in lots of calls to usleep(1000) in a tight loop. This makes the sleep duration quite variable since each call results in a sleep of *at least* 1000us, but possibly more. Depending on how b