aboutsummaryrefslogtreecommitdiff
path: root/src/vendorcode/eltan
diff options
context:
space:
mode:
authorWim Vervoorn <wvervoorn@eltan.com>2019-10-30 17:14:58 +0100
committerPatrick Georgi <pgeorgi@google.com>2019-11-04 11:32:16 +0000
commitd1fb78dbfca1cde8311341c6ed56e8833269f57c (patch)
treebfcc75d8f378ea8e10ea7654eb1420356ba1cbc7 /src/vendorcode/eltan
parentbe820b3911ce5983690114682a8f4af3277f50ba (diff)
vendorcode/eltan/security: Address layout issues
Corrected several layout issues in the mboot.c file. BUG=N/A TEST=build Change-Id: I1599c7be075130345f018a08bede3eb849129a1c Signed-off-by: Wim Vervoorn <wvervoorn@eltan.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/36485 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
Diffstat (limited to 'src/vendorcode/eltan')
-rw-r--r--src/vendorcode/eltan/security/mboot/mboot.c29
1 files changed, 12 insertions, 17 deletions
diff --git a/src/vendorcode/eltan/security/mboot/mboot.c b/src/vendorcode/eltan/security/mboot/mboot.c
index bae377a4d4..1e1bc29303 100644
--- a/src/vendorcode/eltan/security/mboot/mboot.c
+++ b/src/vendorcode/eltan/security/mboot/mboot.c
@@ -335,11 +335,11 @@ int mb_measure_log_worker(EFI_TCG2_EVENT_ALGORITHM_BITMAP activePcr,
*
*mb_entry
*
- * initializes measured boot mechanism, initializes the
- * tpm library and starts the tpm called by mb_measure
+ * initializes measured boot mechanism, initializes the tpm library and starts the tpm called
+ * by mb_measure
*
- * The function can be overridden at the mainboard level my simply creating a
- * function with the same name there.
+ * The function can be overridden at the mainboard level my simply creating a function with the
+ * same name there.
*
* @param[in] wake_from_s3 1 if we are waking from S3, 0 standard boot
*
@@ -354,8 +354,7 @@ int __attribute__((weak)) mb_entry(int wake_from_s3)
/* Initialize TPM driver. */
printk(BIOS_DEBUG, "%s: tlcl_lib_init\n", __func__);
if (tlcl_lib_init() != VB2_SUCCESS) {
- printk(BIOS_ERR, "%s: TPM driver initialization failed.\n",
- __func__);
+ printk(BIOS_ERR, "%s: TPM driver initialization failed.\n", __func__);
return TPM_E_IOERROR;
}
@@ -368,8 +367,7 @@ int __attribute__((weak)) mb_entry(int wake_from_s3)
}
if (status)
- printk(BIOS_ERR, "%s: StartUp failed 0x%x!\n", __func__,
- status);
+ printk(BIOS_ERR, "%s: StartUp failed 0x%x!\n", __func__, status);
return status;
}
@@ -402,18 +400,16 @@ int __attribute__((weak))mb_measure(int wake_from_s3)
printk(BIOS_DEBUG, "%s: StartUp, successful!\n", __func__);
status = mb_measure_log_start();
if (status == TPM_SUCCESS) {
- printk(BIOS_DEBUG, "%s: Measuring, successful!\n",
- __func__);
+ printk(BIOS_DEBUG, "%s: Measuring, successful!\n", __func__);
} else {
invalidate_pcrs();
- printk(BIOS_ERR, "%s: Measuring returned 0x%x "
- "unsuccessful! PCRs invalidated.\n",
- __func__, status);
+ printk(BIOS_ERR, "%s: Measuring returned 0x%x unsuccessful! PCRs invalidated.\n",
+ __func__, status);
}
} else {
invalidate_pcrs();
- printk(BIOS_ERR, "%s: StartUp returned 0x%x, unsuccessful!"
- "PCRs invalidated.\n", __func__, status);
+ printk(BIOS_ERR, "%s: StartUp returned 0x%x, unsuccessful! PCRs invalidated.\n", __func__,
+ status);
}
return status;
}
@@ -519,8 +515,7 @@ int __attribute__((weak))mb_crtm(EFI_TCG2_EVENT_ALGORITHM_BITMAP activePcr)
tcgEventHdr.eventSize, &tcgEventHdr, (uint8_t *)crtm_version,
0);
if (status) {
- printk(BIOS_DEBUG, "Measure CRTM Version returned 0x%x\n",
- status);
+ printk(BIOS_DEBUG, "Measure CRTM Version returned 0x%x\n", status);
return status;
}