Merge "style(measured boot): fix incorrect indentation" into integration

This commit is contained in:
Sandrine Bailleux 2021-07-05 10:19:33 +02:00 committed by TrustedFirmware Code Review
commit 976aedc9fc
1 changed files with 17 additions and 18 deletions

View File

@ -58,26 +58,25 @@ static const id_event_headers_t id_event_header = {
};
static const event2_header_t locality_event_header = {
/*
* All EV_NO_ACTION events SHALL set
* TCG_PCR_EVENT2.pcrIndex = 0, unless otherwise specified
*/
.pcr_index = PCR_0,
/*
* All EV_NO_ACTION events SHALL set
* TCG_PCR_EVENT2.pcrIndex = 0, unless otherwise specified
*/
.pcr_index = PCR_0,
/*
* All EV_NO_ACTION events SHALL set
* TCG_PCR_EVENT2.eventType = 03h
*/
.event_type = EV_NO_ACTION,
/*
* All EV_NO_ACTION events SHALL set
* TCG_PCR_EVENT2.eventType = 03h
*/
.event_type = EV_NO_ACTION,
/*
* All EV_NO_ACTION events SHALL set
* TCG_PCR_EVENT2.digests to all
* 0x00's for each allocated Hash algorithm
*/
.digests = {
.count = HASH_ALG_COUNT
}
/*
* All EV_NO_ACTION events SHALL set TCG_PCR_EVENT2.digests to all
* 0x00's for each allocated Hash algorithm
*/
.digests = {
.count = HASH_ALG_COUNT
}
};
/*