From 75b859978a6b1901301f4ee0b53de84d3d83bd0a Mon Sep 17 00:00:00 2001 From: Lee Leahy Date: Wed, 8 Mar 2017 16:34:12 -0800 Subject: src/lib: Add "int" following "unsigned" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix the following warning detected by checkpatch.pl: WARNING: Prefer 'unsigned int' to bare use of 'unsigned' The remaining 37 warnings in gcov-io.c and libgcov.c are all false positives generated by checkpatch detecting a symbol or function name ending in _unsigned. TEST=Build and run on Galileo Gen2 Change-Id: I9f1b71993caca8b3eb3f643525534a937d365ab3 Signed-off-by: Lee Leahy Reviewed-on: https://review.coreboot.org/18695 Tested-by: build bot (Jenkins) Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Arthur Heymans --- src/lib/thread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/thread.c') diff --git a/src/lib/thread.c b/src/lib/thread.c index 75d0cfc0e7..c2504823b9 100644 --- a/src/lib/thread.c +++ b/src/lib/thread.c @@ -228,7 +228,7 @@ static void idle_thread_init(void) /* Don't inline this function so the timeout_callback won't have its storage * space on the stack cleaned up before the call to schedule(). */ static int __attribute__((noinline)) -thread_yield_timed_callback(struct timeout_callback *tocb, unsigned microsecs) +thread_yield_timed_callback(struct timeout_callback *tocb, unsigned int microsecs) { tocb->priv = current_thread(); tocb->callback = thread_resume_from_timeout; @@ -337,7 +337,7 @@ int thread_run_until(void (*func)(void *), void *arg, return 0; } -int thread_yield_microseconds(unsigned microsecs) +int thread_yield_microseconds(unsigned int microsecs) { struct thread *current; struct timeout_callback tocb; -- cgit v1.2.3