diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2017-09-19 15:19:54 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-09-26 16:53:28 +0000 |
commit | c966075f46d8f54c3a799cd74bc4f3ec46fe553a (patch) | |
tree | d837bafb7107a5f123840910f316d652de882050 /src/mainboard/siemens/mc_apl1 | |
parent | 109ba284a155aab71676894f39735f119cd57405 (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/mainboard/siemens/mc_apl1')
-rw-r--r-- | src/mainboard/siemens/mc_apl1/mainboard.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mainboard/siemens/mc_apl1/mainboard.c b/src/mainboard/siemens/mc_apl1/mainboard.c index fb849f9872..f77ef75d3e 100644 --- a/src/mainboard/siemens/mc_apl1/mainboard.c +++ b/src/mainboard/siemens/mc_apl1/mainboard.c @@ -165,8 +165,7 @@ static void wait_for_legacy_dev(void *unused) stopwatch_init_msecs_expire(&sw, (legacy_delay - us_since_boot) / 1000); printk(BIOS_NOTICE, "Wait remaining %d of %d us for legacy devices...", legacy_delay - us_since_boot, legacy_delay); - while (!stopwatch_expired(&sw)) - ; + stopwatch_wait_until_expired(&sw); printk(BIOS_NOTICE, "done!\n"); } |