Attention is currently required from: Ariel Otilibili, Maximilian Brune, Shuo Liu.
Felix Singer has uploaded a new patch set (#5) to the change originally created by Ariel Otilibili. ( https://review.coreboot.org/c/coreboot/+/85786?usp=email )
Change subject: util/cbfstool: Refine type and signatures ......................................................................
util/cbfstool: Refine type and signatures
As suggested by the linter:
Prefer 'unsigned long' over 'unsigned long int' as the int is unnecessary
In fmap_bsearch(), removed needless assignment of offset; it is already set to 0 in the search loop.
fmap_find() uses the return value of fmap_bsearch(); and is declared as 'long int'. Per the linter warnings, replaced 'long int' by 'long'.
Prefer 'long' over 'long int' as the int is unnecessary
Link: https://qa.coreboot.org/job/coreboot-untested-files/lastSuccessfulBuild/arti... Change-Id: If94e70778d0302552f151c31d3073524162faf9e Signed-off-by: Ariel Otilibili otilibil@eurecom.fr --- M util/cbfstool/cbfstool.c M util/cbfstool/flashmap/fmap.c 2 files changed, 9 insertions(+), 9 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/86/85786/5