diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2020-03-14 01:12:21 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2020-03-15 12:57:20 +0000 |
commit | 599bc6070df30373265108a4c9f75dd1123bf71d (patch) | |
tree | 56b75393c42af3dbf3b1a1fb1ceb9f5738dee3a7 | |
parent | dd57ac2f35954af84e4a20451284bbdeaf7f4aa8 (diff) |
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>
-rw-r--r-- | src/lib/spd_bin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/spd_bin.c b/src/lib/spd_bin.c index 4be0051844..47c6dbd7cb 100644 --- a/src/lib/spd_bin.c +++ b/src/lib/spd_bin.c @@ -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); |