diff options
author | Harsha B R <harsha.b.r@intel.com> | 2023-01-31 09:36:17 +0530 |
---|---|---|
committer | Sridhar Siricilla <sridhar.siricilla@intel.com> | 2023-02-01 06:02:55 +0000 |
commit | 1170940082c5a6b47089e1e6bb6618cbbbb77ccb (patch) | |
tree | 696c5f9c0f376d365448e59962471eae0fd69641 | |
parent | e2cbeebe9f30f6b6e1794b8a171fb3c4ec107722 (diff) |
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>
-rw-r--r-- | src/mainboard/intel/mtlrvp/romstage.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |