src/lib: Remove braces for single statements
Fix the following warning detected by checkpatch.pl: WARNING: braces {} are not necessary for single statement blocks TEST=Build and run on Galileo Gen2 Change-Id: Ie4b41f6fb75142ddd75103a55e0347ed85e7e873 Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18697 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins)
This commit is contained in:
@ -121,9 +121,8 @@ static void idle_thread(void *unused)
|
||||
{
|
||||
/* This thread never voluntarily yields. */
|
||||
thread_prevent_coop();
|
||||
while (1) {
|
||||
while (1)
|
||||
timers_run();
|
||||
}
|
||||
}
|
||||
|
||||
static void schedule(struct thread *t)
|
||||
@ -214,9 +213,8 @@ static void idle_thread_init(void)
|
||||
|
||||
t = get_free_thread();
|
||||
|
||||
if (t == NULL) {
|
||||
if (t == NULL)
|
||||
die("No threads available for idle thread!\n");
|
||||
}
|
||||
|
||||
/* Queue idle thread to run once all other threads have yielded. */
|
||||
prepare_thread(t, idle_thread, NULL, call_wrapper, NULL);
|
||||
|
Reference in New Issue
Block a user