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:
parent
76d2b6699d
commit
38ea9e3ef4
|
@ -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));
|
||||
|
|
Loading…
Reference in New Issue