Skip to content

Commit 6b30418

Browse files
Vge0rgecvinayak
authored andcommitted
nrf_security: Don't use CC3XX define in wrappers
Don't use the define from the CC3XX library in the PSA crypto driver wrappers file. There are is a corner case in which we will have to build this file without including the headers for CC3XX. Signed-off-by: Georgios Vasilakis <georgios.vasilakis@nordicsemi.no>
1 parent 310bcb2 commit 6b30418

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/nrf_security/src/psa_crypto_driver_wrappers.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2721,7 +2721,7 @@ psa_status_t psa_driver_wrapper_get_random(psa_driver_random_context_t *context,
27212721
#elif defined(PSA_NEED_CC3XX_HMAC_DRBG_DRIVER)
27222722
err = nrf_cc3xx_platform_hmac_drbg_get(NULL, output, output_size, &output_length);
27232723
#endif
2724-
if (err != NRF_CC3XX_PLATFORM_SUCCESS) {
2724+
if (err != 0) {
27252725
return PSA_ERROR_HARDWARE_FAILURE;
27262726
}
27272727

0 commit comments

Comments
 (0)