mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-08-07 06:42:56 +03:00
Add comment to explain lack of driver dispatch
Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
@@ -435,11 +435,19 @@ psa_status_t psa_driver_wrapper_verify_hash(
|
|||||||
|
|
||||||
void psa_driver_wrapper_interruptible_set_max_ops( uint32_t max_ops )
|
void psa_driver_wrapper_interruptible_set_max_ops( uint32_t max_ops )
|
||||||
{
|
{
|
||||||
|
/* TODO - dispatch to drivers dynamically registered for this
|
||||||
|
* service when registering is implemented. For now, fall
|
||||||
|
* through to internal implementation. */
|
||||||
|
|
||||||
mbedtls_psa_interruptible_set_max_ops( max_ops );
|
mbedtls_psa_interruptible_set_max_ops( max_ops );
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t psa_driver_wrapper_interruptible_get_max_ops( void )
|
uint32_t psa_driver_wrapper_interruptible_get_max_ops( void )
|
||||||
{
|
{
|
||||||
|
/* TODO - dispatch to drivers dynamically registered for this
|
||||||
|
* service when registering is implemented. For now, fall
|
||||||
|
* through to internal implementation. */
|
||||||
|
|
||||||
return mbedtls_psa_interruptible_get_max_ops( );
|
return mbedtls_psa_interruptible_get_max_ops( );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user