summaryrefslogtreecommitdiff
path: root/baseboard/brya/cbi.c
diff options
context:
space:
mode:
Diffstat (limited to 'baseboard/brya/cbi.c')
-rw-r--r--baseboard/brya/cbi.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/baseboard/brya/cbi.c b/baseboard/brya/cbi.c
index 791abbab88..ded310bffc 100644
--- a/baseboard/brya/cbi.c
+++ b/baseboard/brya/cbi.c
@@ -28,6 +28,10 @@ __overridable void board_init_fw_config(void)
{
}
+__overridable void board_init_ssfc(void)
+{
+}
+
/*
* Read CBI from I2C EEPROM and initialize variables for board variants.
*/
@@ -46,6 +50,8 @@ static void cbi_init(void)
board_init_fw_config();
+ board_init_ssfc();
+
/* Allow the board project to make runtime changes based on CBI data */
board_cbi_init();
}