summaryrefslogtreecommitdiffstats
path: root/src/vendorcode
diff options
context:
space:
mode:
authorJon Murphy <jpmurphy@google.com>2023-09-05 12:19:23 -0600
committerFelix Held <felix-coreboot@felixheld.de>2023-09-08 15:22:44 +0000
commitcbe975d8d847d356ee870807f3b57c2cb0dc59da (patch)
treebff36b3cd074c4d1a1fb2bc773dbd2ed00bb2255 /src/vendorcode
parent89709da1fc863a0aefb0842a51d279e3e29bb517 (diff)
downloadcoreboot-cbe975d8d847d356ee870807f3b57c2cb0dc59da.tar.gz
coreboot-cbe975d8d847d356ee870807f3b57c2cb0dc59da.tar.bz2
coreboot-cbe975d8d847d356ee870807f3b57c2cb0dc59da.zip
vendorcode/eltan/security: update attribute use
Update the use of __attribute__((weak)) to the preferred __weak BUG=None TEST=Builds BRANCH=None Change-Id: I75a0e7c03e537be2d38b7f9c6b81eafbb5fb8018 Signed-off-by: Jon Murphy <jpmurphy@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/77669 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Diffstat (limited to 'src/vendorcode')
-rw-r--r--src/vendorcode/eltan/security/mboot/mboot.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vendorcode/eltan/security/mboot/mboot.c b/src/vendorcode/eltan/security/mboot/mboot.c
index e8a2f8014aff..cb371401aa08 100644
--- a/src/vendorcode/eltan/security/mboot/mboot.c
+++ b/src/vendorcode/eltan/security/mboot/mboot.c
@@ -271,7 +271,7 @@ int mb_measure_log_worker(const char *name, uint32_t type, uint32_t pcr,
* @retval TPM_E_IOERROR Unexpected device behavior.
**/
-int __attribute__((weak)) mb_entry(int wake_from_s3)
+__weak int mb_entry(int wake_from_s3)
{
int status;
@@ -315,7 +315,7 @@ int __attribute__((weak)) mb_entry(int wake_from_s3)
* @retval TPM_E_IOERROR Unexpected device behavior.
*/
-int __attribute__((weak))mb_measure(int wake_from_s3)
+__weak int mb_measure(int wake_from_s3)
{
uint32_t status;
@@ -357,7 +357,7 @@ int __attribute__((weak))mb_measure(int wake_from_s3)
* @retval TPM_SUCCESS Operation completed successfully.
* @retval TPM_E_IOERROR Unexpected device behavior.
*/
-int __attribute__((weak))mb_measure_log_start(void)
+__weak int mb_measure_log_start(void)
{
int status;
uint32_t i;
@@ -414,7 +414,7 @@ static const uint8_t crtm_version[] =
* @retval TPM_SUCCESS Operation completed successfully.
* @retval TPM_E_IOERROR Unexpected device behavior.
**/
-int __attribute__((weak))mb_crtm(void)
+__weak int mb_crtm(void)
{
int status;
TCG_PCR_EVENT2_HDR tcgEventHdr;