summaryrefslogtreecommitdiff
path: root/src/mainboard/prodrive/atlas/vpd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/prodrive/atlas/vpd.c')
-rw-r--r--src/mainboard/prodrive/atlas/vpd.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/mainboard/prodrive/atlas/vpd.c b/src/mainboard/prodrive/atlas/vpd.c
index 75d1cafd6e..ba249a94d7 100644
--- a/src/mainboard/prodrive/atlas/vpd.c
+++ b/src/mainboard/prodrive/atlas/vpd.c
@@ -8,6 +8,11 @@
#include "mainboard.h"
#include "vpd.h"
+static void write_invalid_str(char *dest, size_t length)
+{
+ snprintf(dest, length, "%s", "INVALID");
+}
+
const struct emi_eeprom_vpd *get_emi_eeprom_vpd(void)
{
static union {
@@ -48,8 +53,8 @@ const struct emi_eeprom_vpd *get_emi_eeprom_vpd(void)
case 0:
memset(vpd.raw, 0, sizeof(vpd.raw));
vpd.layout.header.magic = VPD_MAGIC;
- vpd.layout.serial_number[0] = '\0';
- vpd.layout.part_number[0] = '\0';
+ write_invalid_str(vpd.layout.serial_number, sizeof(vpd.layout.serial_number));
+ write_invalid_str(vpd.layout.part_number, sizeof(vpd.layout.part_number));
vpd.layout.profile = ATLAS_PROF_UNPROGRAMMED;
__fallthrough;
default: