From 93cbbbfc7f32f62b1d20027541122c17e575ced6 Mon Sep 17 00:00:00 2001 From: "Naveen R. Iyer" Date: Fri, 19 Apr 2024 17:26:17 -0500 Subject: [PATCH] security/tpm/tspi/crtm.c: Fix space required before open brace error Fix checkpatch error. Change-Id: I890fcfa4ad7b7abe032248b435271514e8e264f3 Signed-off-by: Naveen R. Iyer Reviewed-on: https://review.coreboot.org/c/coreboot/+/82001 Reviewed-by: Felix Singer Tested-by: build bot (Jenkins) --- src/security/tpm/tspi/crtm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/security/tpm/tspi/crtm.c b/src/security/tpm/tspi/crtm.c index 3c2760a0b8..621d7cd5e0 100644 --- a/src/security/tpm/tspi/crtm.c +++ b/src/security/tpm/tspi/crtm.c @@ -67,7 +67,7 @@ static tpm_result_t tspi_init_crtm(void) if (rc) return rc; } - } else if (CONFIG(BOOTBLOCK_IN_CBFS)){ + } else if (CONFIG(BOOTBLOCK_IN_CBFS)) { /* Mapping measures the file. We know we can safely map here because bootblock-as-a-file is only used on x86, where we don't need cache to map. */ enum cbfs_type type = CBFS_TYPE_BOOTBLOCK;