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 <harsha.b.r@intel.com>
Change-Id: Ie82df940cbd1eba9c5d485b48648c2bc8f234aae
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72638
Reviewed-by: Sridhar Siricilla <sridhar.siricilla@intel.com>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Usha P <usha.p@intel.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Harsha B R
2023-01-31 09:36:17 +05:30
committed by Sridhar Siricilla
parent e2cbeebe9f
commit 1170940082

View File

@ -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;