aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/i2c/rx6110sa
diff options
context:
space:
mode:
authorJonathan Neuschäfer <j.neuschaefer@gmx.net>2017-09-19 15:19:54 +0200
committerMartin Roth <martinroth@google.com>2017-09-26 16:53:28 +0000
commitc966075f46d8f54c3a799cd74bc4f3ec46fe553a (patch)
treed837bafb7107a5f123840910f316d652de882050 /src/drivers/i2c/rx6110sa
parent109ba284a155aab71676894f39735f119cd57405 (diff)
Use stopwatch_wait_until_expired where applicable
Change-Id: I4d6c6810b91294a7e401a4a1a446218c04c98e55 Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net> Reviewed-on: https://review.coreboot.org/21590 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Mario Scheithauer <mario.scheithauer@siemens.com>
Diffstat (limited to 'src/drivers/i2c/rx6110sa')
-rw-r--r--src/drivers/i2c/rx6110sa/rx6110sa.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/drivers/i2c/rx6110sa/rx6110sa.c b/src/drivers/i2c/rx6110sa/rx6110sa.c
index aad109781d..69ea9fec0f 100644
--- a/src/drivers/i2c/rx6110sa/rx6110sa.c
+++ b/src/drivers/i2c/rx6110sa/rx6110sa.c
@@ -149,8 +149,7 @@ static void rx6110sa_init(struct device *dev)
* Take the needed delay after a reset sequence into account before the
* VLF-bit can be cleared.
*/
- while (!stopwatch_expired(&sw))
- ;
+ stopwatch_wait_until_expired(&sw);
flags &= ~VLF_BIT;
rx6110sa_write(dev, FLAG_REGISTER, flags);