Commit 976aedc9 authored by Sandrine Bailleux's avatar Sandrine Bailleux Committed by TrustedFirmware Code Review
Browse files

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

parents 9fa5db4d ef65c9c6
...@@ -58,26 +58,25 @@ static const id_event_headers_t id_event_header = { ...@@ -58,26 +58,25 @@ static const id_event_headers_t id_event_header = {
}; };
static const event2_header_t locality_event_header = { static const event2_header_t locality_event_header = {
/* /*
* All EV_NO_ACTION events SHALL set * All EV_NO_ACTION events SHALL set
* TCG_PCR_EVENT2.pcrIndex = 0, unless otherwise specified * TCG_PCR_EVENT2.pcrIndex = 0, unless otherwise specified
*/ */
.pcr_index = PCR_0, .pcr_index = PCR_0,
/* /*
* All EV_NO_ACTION events SHALL set * All EV_NO_ACTION events SHALL set
* TCG_PCR_EVENT2.eventType = 03h * TCG_PCR_EVENT2.eventType = 03h
*/ */
.event_type = EV_NO_ACTION, .event_type = EV_NO_ACTION,
/* /*
* All EV_NO_ACTION events SHALL set * All EV_NO_ACTION events SHALL set TCG_PCR_EVENT2.digests to all
* TCG_PCR_EVENT2.digests to all * 0x00's for each allocated Hash algorithm
* 0x00's for each allocated Hash algorithm */
*/ .digests = {
.digests = { .count = HASH_ALG_COUNT
.count = HASH_ALG_COUNT }
}
}; };
/* /*
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment