Martin L Roth has submitted this change. ( https://review.coreboot.org/c/coreboot/+/81173?usp=email )
Change subject: util/smmstoretool/fv.c: fix 3 formatting issues ......................................................................
util/smmstoretool/fv.c: fix 3 formatting issues
Change-Id: If27218df40e58f249769b3d84c0cd4c299e2282b Signed-off-by: Sergii Dmytruk sergii.dmytruk@3mdeb.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/81173 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Martin L Roth gaumless@gmail.com --- M util/smmstoretool/fv.c 1 file changed, 4 insertions(+), 5 deletions(-)
Approvals: build bot (Jenkins): Verified Martin L Roth: Looks good to me, approved
diff --git a/util/smmstoretool/fv.c b/util/smmstoretool/fv.c index c9d342e..c6ee913 100644 --- a/util/smmstoretool/fv.c +++ b/util/smmstoretool/fv.c @@ -11,7 +11,7 @@ #include "udk2017.h"
// The same as in `smmstore.h` header, which isn't in `commonlib`. -#define SMM_BLOCK_SIZE (64*1024) +#define SMM_BLOCK_SIZE (64 * 1024)
static const EFI_GUID EfiVariableGuid = EFI_VARIABLE_GUID;
@@ -33,8 +33,7 @@ return checksum; }
-bool -fv_init(struct mem_range_t fv) +bool fv_init(struct mem_range_t fv) { if (fv.length % SMM_BLOCK_SIZE != 0) { fprintf(stderr, @@ -152,8 +151,8 @@ return true; }
-bool -fv_parse(struct mem_range_t fv, struct mem_range_t *var_store, bool *auth_vars) +bool fv_parse(struct mem_range_t fv, struct mem_range_t *var_store, + bool *auth_vars) { const EFI_FIRMWARE_VOLUME_HEADER *vol_hdr = (void *)fv.start; if (!check_fw_vol_hdr(vol_hdr, fv.length)) {