diff options
author | Subrata Banik <subratabanik@google.com> | 2022-03-09 12:55:34 +0530 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2022-03-09 08:40:43 +0000 |
commit | 60b2ab8d1f280c84a8f4e870c5c81c3b4752d530 (patch) | |
tree | 2154df3b8451ca35c28da66c1e11a96a4f68bb3f /src/drivers/tpm/cr50.h | |
parent | 69cc557cfb6eb2cbb5b137bc206cd759c1dba5f0 (diff) |
{drivers/security}: Replace `cb_err_t` with `enum cb_err`
This patch replaces remaining `cb_err_t` with `enum cb_err` after commit
hash 69cc557c (commonlib/bsd: Remove cb_err_t) removes majority of
`cb_err_t` instances.
TEST=Able to build the brya.
Signed-off-by: Subrata Banik <subratabanik@google.com>
Change-Id: I3392f9c2cfb4a889a999c8ea25066c89979f0900
Reviewed-on: https://review.coreboot.org/c/coreboot/+/62676
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/drivers/tpm/cr50.h')
-rw-r--r-- | src/drivers/tpm/cr50.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/drivers/tpm/cr50.h b/src/drivers/tpm/cr50.h index 4fdd06b50b..f754e133b8 100644 --- a/src/drivers/tpm/cr50.h +++ b/src/drivers/tpm/cr50.h @@ -16,9 +16,9 @@ struct cr50_firmware_version { bool cr50_is_long_interrupt_pulse_enabled(void); /* Get the Cr50 firmware version information. */ -cb_err_t cr50_get_firmware_version(struct cr50_firmware_version *version); +enum cb_err cr50_get_firmware_version(struct cr50_firmware_version *version); /* Set the BOARD_CFG register depending on Cr50 Kconfigs */ -cb_err_t cr50_set_board_cfg(void); +enum cb_err cr50_set_board_cfg(void); #endif /* __DRIVERS_TPM_CR50_H__ */ |