diff options
author | Sridhar Siricilla <sridhar.siricilla@intel.com> | 2023-01-10 14:59:35 +0530 |
---|---|---|
committer | Martin L Roth <gaumless@gmail.com> | 2023-01-15 01:56:23 +0000 |
commit | ad6d3128f87c47369f015122ae3e9905de7a0df9 (patch) | |
tree | 1f1cb4c7ff4f30179cae118112a415232156ceba /src/soc/intel/common/block/include | |
parent | 2fed41d46275999061be637dcd26d7dd3a2737e6 (diff) |
soc/intel/common: Use enum cb_err values
The patch uses cb_err enum values as return values for below functions:
1. cse_hmrfpo_enable()
2. cse_boot_to_ro()
3. cse_prep_for_rw_update()
4. cse_sub_part_get_target_rdev()
5. cse_get_sub_part_fw_version()
6. cse_prep_for_component_update()
Signed-off-by: Sridhar Siricilla <sridhar.siricilla@intel.com>
Change-Id: I1bdb7d6b2051a69f1021673d464bfad63dd39431
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71823
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Diffstat (limited to 'src/soc/intel/common/block/include')
-rw-r--r-- | src/soc/intel/common/block/include/intelblocks/cse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/common/block/include/intelblocks/cse.h b/src/soc/intel/common/block/include/intelblocks/cse.h index bccdc4ead4..356df0560d 100644 --- a/src/soc/intel/common/block/include/intelblocks/cse.h +++ b/src/soc/intel/common/block/include/intelblocks/cse.h @@ -405,7 +405,7 @@ int cse_request_global_reset(void); * Returns 0 on failure to send HECI command and to enable HMRFPO mode, and 1 on success. * */ -int cse_hmrfpo_enable(void); +enum cb_err cse_hmrfpo_enable(void); /* * Send HMRFPO_GET_STATUS command. |