summaryrefslogtreecommitdiffstats
path: root/src/vendorcode/eltan/security/mboot/mboot_func.c
blob: b6b3d023a27eaf3741ac1915db882973d405d1fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <mboot.h>

int log_efi_specid_event(void) {
	return TPM_SUCCESS;
}

int log_event_tcg_12_format(TCG_PCR_EVENT2_HDR *EventHdr, uint8_t *EventLog) {
	return TPM_SUCCESS;
}

int log_event_tcg_20_format(TCG_PCR_EVENT2_HDR *EventHdr, uint8_t *EventLog) {
	return TPM_SUCCESS;
}