diff options
author | Naveen R. Iyer <iyernaveenr@gmail.com> | 2024-04-19 17:26:17 -0500 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2024-04-21 03:39:12 +0000 |
commit | 93cbbbfc7f32f62b1d20027541122c17e575ced6 (patch) | |
tree | b7f6960637c9020bc3c9a3fa0ddc5b5a6c9a9463 | |
parent | 8b53aa6eee3bf82b9bde323eca32fbab88983c1a (diff) |
security/tpm/tspi/crtm.c: Fix space required before open brace error
Fix checkpatch error.
Change-Id: I890fcfa4ad7b7abe032248b435271514e8e264f3
Signed-off-by: Naveen R. Iyer <iyernaveenr@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/82001
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/security/tpm/tspi/crtm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |