lib/spd_bin: Add spaces around operator

Change-Id: Ic0571d06e94708dd5e151621ab7790f3c9f775c2
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/39528
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
Paul Menzel 2020-03-14 01:12:21 +01:00 committed by Patrick Georgi
parent dd57ac2f35
commit 599bc6070d
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ static void spd_get_name(const uint8_t spd[], char spd_name[], int dram_type)
void print_spd_info(uint8_t spd[])
{
char spd_name[DDR4_SPD_PART_LEN+1] = { 0 };
char spd_name[DDR4_SPD_PART_LEN + 1] = { 0 };
int type = spd[SPD_DRAM_TYPE];
int banks = spd_get_banks(spd, type);
int capmb = spd_get_capmb(spd);