UPSTREAM: src/lib: Add "int" following "unsigned"
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: I746e85924f2f4684e3b67941fdfa3e5084c498f7
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: 75b859978a
Original-Change-Id: I9f1b71993caca8b3eb3f643525534a937d365ab3
Original-Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com>
Original-Reviewed-on: https://review.coreboot.org/18695
Original-Tested-by: build bot (Jenkins)
Original-Reviewed-by: Philippe Mathieu-Daud <philippe.mathieu.daude@gmail.com>
Original-Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://chromium-review.googlesource.com/452880
This commit is contained in:
parent
26d756aea8
commit
82469c489c
9 changed files with 81 additions and 81 deletions
|
|
@ -20,7 +20,7 @@
|
|||
|
||||
__attribute__((weak)) void init_timer() { /* do nothing */ }
|
||||
|
||||
void udelay(unsigned usec)
|
||||
void udelay(unsigned int usec)
|
||||
{
|
||||
struct stopwatch sw;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue