summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/soc/intel/common/block/cse/cse_lite.c3
-rw-r--r--src/soc/intel/common/block/include/intelblocks/cse.h6
2 files changed, 2 insertions, 7 deletions
diff --git a/src/soc/intel/common/block/cse/cse_lite.c b/src/soc/intel/common/block/cse/cse_lite.c
index 4cc4f51d86..d6c83479de 100644
--- a/src/soc/intel/common/block/cse/cse_lite.c
+++ b/src/soc/intel/common/block/cse/cse_lite.c
@@ -1220,7 +1220,8 @@ static enum cb_err send_get_fpt_partition_info_cmd(enum fpt_partition_id id,
return CB_SUCCESS;
}
-enum cb_err cse_get_fpt_partition_info(enum fpt_partition_id id, struct fw_version_resp *resp)
+static enum cb_err cse_get_fpt_partition_info(enum fpt_partition_id id,
+ struct fw_version_resp *resp)
{
if (vboot_recovery_mode_enabled()) {
printk(BIOS_WARNING,
diff --git a/src/soc/intel/common/block/include/intelblocks/cse.h b/src/soc/intel/common/block/include/intelblocks/cse.h
index f3a7f83666..c893846e19 100644
--- a/src/soc/intel/common/block/include/intelblocks/cse.h
+++ b/src/soc/intel/common/block/include/intelblocks/cse.h
@@ -561,10 +561,4 @@ void cse_enable_ptt(bool state);
*/
enum cb_err cse_get_fw_feature_state(uint32_t *feature_state);
-/*
- * The function sends a HECI command to get the partition information of the shared ID.
- * The retrieved partition is stored in the memory pointed to by the resp pointer.
- * The function returns 0 on success and < 0 on failure.
- */
-enum cb_err cse_get_fpt_partition_info(enum fpt_partition_id id, struct fw_version_resp *resp);
#endif // SOC_INTEL_COMMON_CSE_H