aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard
diff options
context:
space:
mode:
authorVenkat Thogaru <quic_thogaru@quicinc.com>2022-11-07 15:49:06 +0530
committerShelley Chen <shchen@google.com>2022-11-10 17:28:05 +0000
commit38ea9e3ef4b05c3891cf6df3a524281802b622c3 (patch)
tree86fca6b80e3e5b57338aa3eca0861cd98a758cc4 /src/mainboard
parent76d2b6699d396758c943bc5dea76871eca95c111 (diff)
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>
Diffstat (limited to 'src/mainboard')
-rw-r--r--src/mainboard/google/herobrine/boardid.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mainboard/google/herobrine/boardid.c b/src/mainboard/google/herobrine/boardid.c
index 7bac5df1eb..fc058e2b1a 100644
--- a/src/mainboard/google/herobrine/boardid.c
+++ b/src/mainboard/google/herobrine/boardid.c
@@ -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));