Merge "fix(scmi): make msg_header variable volatile" into integration

This commit is contained in:
Madhukar Pappireddy 2021-12-13 20:12:02 +01:00 committed by TrustedFirmware Code Review
commit 20c8c230c8
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ typedef struct mailbox_mem {
uint64_t res_b; /* Reserved */
uint32_t flags;
volatile uint32_t len;
uint32_t msg_header;
volatile uint32_t msg_header;
uint32_t payload[];
} mailbox_mem_t;