From 1170940082c5a6b47089e1e6bb6618cbbbb77ccb Mon Sep 17 00:00:00 2001 From: Harsha B R Date: Tue, 31 Jan 2023 09:36:17 +0530 Subject: [PATCH] mb/intel/mtlrvp: Modify the print message This patch updates the print message to start with uppercase, 'board' to 'Board'. BUG=b:224325352 BRANCH=None TEST=Able to observe proper print message when invalid board id is configured. Signed-off-by: Harsha B R Change-Id: Ie82df940cbd1eba9c5d485b48648c2bc8f234aae Reviewed-on: https://review.coreboot.org/c/coreboot/+/72638 Reviewed-by: Sridhar Siricilla Reviewed-by: Eric Lai Reviewed-by: Usha P Tested-by: build bot (Jenkins) --- src/mainboard/intel/mtlrvp/romstage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainboard/intel/mtlrvp/romstage.c b/src/mainboard/intel/mtlrvp/romstage.c index b5bb777476..e2acfd0e07 100644 --- a/src/mainboard/intel/mtlrvp/romstage.c +++ b/src/mainboard/intel/mtlrvp/romstage.c @@ -12,7 +12,7 @@ static size_t get_spd_index(void) uint8_t board_id = get_rvp_board_id(); size_t spd_index; - printk(BIOS_INFO, "board id is 0x%x\n", board_id); + printk(BIOS_INFO, "Board id is 0x%x\n", board_id); spd_index = board_id & SPD_ID_MASK;