mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 17:44:19 +00:00

Change-Id: I4fb7a79c2f31973a3cd181feaface9a42bc3246f Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
18 lines
354 B
C
18 lines
354 B
C
/*
|
|
* Copyright (c) 2020-2021, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef MEASURED_BOOT_H
|
|
#define MEASURED_BOOT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <drivers/measured_boot/event_log.h>
|
|
|
|
/* Functions' declarations */
|
|
void measured_boot_init(void);
|
|
void measured_boot_finish(void);
|
|
|
|
#endif /* MEASURED_BOOT_H */
|