Fix return type
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
diff --git a/scripts/data_files/driver_templates/psa_crypto_driver_wrappers.h.jinja b/scripts/data_files/driver_templates/psa_crypto_driver_wrappers.h.jinja
index 4032d0e..282dd7b 100644
--- a/scripts/data_files/driver_templates/psa_crypto_driver_wrappers.h.jinja
+++ b/scripts/data_files/driver_templates/psa_crypto_driver_wrappers.h.jinja
@@ -472,7 +472,7 @@
}
}
-static inline int psa_driver_wrapper_sign_hash_get_num_ops(
+static inline psa_status_t psa_driver_wrapper_sign_hash_get_num_ops(
psa_sign_hash_interruptible_operation_t *operation, uint32_t *num_ops )
{
switch( operation->id )
@@ -497,7 +497,7 @@
return( PSA_ERROR_INVALID_ARGUMENT );
}
-static inline int psa_driver_wrapper_verify_hash_get_num_ops(
+static inline psa_status_t psa_driver_wrapper_verify_hash_get_num_ops(
psa_verify_hash_interruptible_operation_t *operation, uint32_t *num_ops )
{
switch( operation->id )