diff options
author | Jeff Chase <jnchase@google.com> | 2020-02-24 18:43:23 -0500 |
---|---|---|
committer | Shelley Chen <shchen@google.com> | 2020-02-26 05:39:43 +0000 |
commit | 71090c6063fd73b7390149b7234d4070cc904855 (patch) | |
tree | d029dc9716a1d3aa691d2ae583dbbb1b1a4d6b9c /src/mainboard/google | |
parent | 4f81bba18b92a04f147611d5b9ec9453b467f65b (diff) | |
download | coreboot-71090c6063fd73b7390149b7234d4070cc904855.tar.xz |
mb/google/fizz: allow 8 bit sku ids
Change-Id: I663678a4c572fe80298f7388870d5cd403122b98
Signed-off-by: Jeff Chase <jnchase@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/39109
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Shelley Chen <shchen@google.com>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/fizz/mainboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/google/fizz/mainboard.c b/src/mainboard/google/fizz/mainboard.c index 939778630c..89795f5eb3 100644 --- a/src/mainboard/google/fizz/mainboard.c +++ b/src/mainboard/google/fizz/mainboard.c @@ -184,7 +184,7 @@ static uint8_t board_oem_id(void) const char *smbios_system_sku(void) { - static char sku_str[5]; /* sku{0..7} */ + static char sku_str[7]; /* sku{0..255} */ snprintf(sku_str, sizeof(sku_str), "sku%d", board_oem_id()); |