From 66dd399ac2fb57321ba3095515b11d40ca7c5614 Mon Sep 17 00:00:00 2001 From: Marshall Dawson Date: Wed, 13 Dec 2017 10:51:13 -0700 Subject: amd/common/psp: Convert structure init to C99 Use C99 designated initializers for the psp_notify_dram() buffer structure. Change-Id: I2e18b3a2c19b8fb17d0f654b16def52517538957 Signed-off-by: Marshall Dawson Reviewed-on: https://review.coreboot.org/22847 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin --- src/soc/amd/common/block/psp/psp.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/soc') diff --git a/src/soc/amd/common/block/psp/psp.c b/src/soc/amd/common/block/psp/psp.c index b13aa57337..bb0a5fe8bd 100644 --- a/src/soc/amd/common/block/psp/psp.c +++ b/src/soc/amd/common/block/psp/psp.c @@ -161,14 +161,15 @@ static int send_psp_command(u32 command, void *buffer) */ int psp_notify_dram(void) { - struct mbox_default_buffer buffer; int cmd_status; + struct mbox_default_buffer buffer = { + .header = { + .size = sizeof(buffer) + } + }; printk(BIOS_DEBUG, "PSP: Notify that DRAM is available... "); - buffer.header.size = sizeof(struct mbox_default_buffer); - buffer.header.status = 0; /* PSP does not report status for this cmd */ - cmd_status = send_psp_command(MBOX_BIOS_CMD_DRAM_INFO, &buffer); /* buffer's status shouldn't change but report it if it does */ -- cgit v1.2.3