mb/google/herobrine: Update comment of modem status info

Updated comment as per guidelines.

BUG=b:232302324
TEST=none

Signed-off-by: Venkat Thogaru <quic_thogaru@quicinc.com>
Change-Id: I6a925477a926e7e9d54e42d662768536318ec8e0
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69296
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Shelley Chen <shchen@google.com>
This commit is contained in:
Venkat Thogaru 2022-11-07 15:49:06 +05:30 committed by Shelley Chen
parent 76d2b6699d
commit 38ea9e3ef4
1 changed files with 2 additions and 1 deletions

View File

@ -43,7 +43,8 @@ uint32_t ram_code(void)
uint32_t sku_id(void)
{
static uint32_t id = UNDEFINED_STRAPPING_ID;
/*Update modem status in 9th bit of sku id*/
/* Update modem status in 9th bit of sku id */
uint32_t mask = 1 << 9;
id = google_chromeec_get_board_sku();
id = ((id & ~mask) | (socinfo_modem_supported() << 9));