aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2022-11-04 21:03:02 +0100
committerFelix Held <felix-coreboot@felixheld.de>2022-11-09 14:25:27 +0000
commit2dc59e6e08dab5d0e06bf4ad4af8a0535fecde23 (patch)
tree3ea568b399fb5522e35f5e64a1150e51a7eb8972 /src
parentf874fc2717cf1a7b06bfb73f3de3698f1e1a9244 (diff)
mb/prodrive/hermes: Fix format mismatch
Change-Id: I2a6947c1a39b115a7c7f5da1c9becfd51f45fad9 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69239 Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/prodrive/hermes/eeprom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/prodrive/hermes/eeprom.c b/src/mainboard/prodrive/hermes/eeprom.c
index 70a163f882..c4a26955ba 100644
--- a/src/mainboard/prodrive/hermes/eeprom.c
+++ b/src/mainboard/prodrive/hermes/eeprom.c
@@ -65,7 +65,7 @@ static size_t get_board_settings_from_eeprom(struct eeprom_board_settings *board
if (crc != board_cfg->signature)
continue;
- printk(BIOS_DEBUG, "CFG EEPROM: Board settings CRC OK for %zu / %lu bytes\n",
+ printk(BIOS_DEBUG, "CFG EEPROM: Board settings CRC OK for %zu / %zu bytes\n",
len, sizeof(board_cfg->raw_settings));
return len;
}