mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-02-06 03:40:04 +00:00
Add comment to explain lack of driver dispatch
Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
parent
a4cb909fcd
commit
c08112160a
@ -435,11 +435,19 @@ psa_status_t psa_driver_wrapper_verify_hash(
|
||||
|
||||
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 );
|
||||
}
|
||||
|
||||
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( );
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user