mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-23 06:25:45 +01:00
Align function parameter names for mbedtls_set_key_owner_id in PSA headers
static function mbedtls_set_key_owner() is declared in psa/crypto.h and defined in psa/crypto_struct.h with different parameter name for the mbedtls_key_owner_id_t parameter and that may trigger errors from static code analysis tool as cppcheck. Signed-off-by: Antonio de Angelis <antonio.deangelis@arm.com>
This commit is contained in:
parent
ebe6caa869
commit
bf672336ae
@ -159,10 +159,10 @@ static void psa_set_key_id( psa_key_attributes_t *attributes,
|
||||
* the owner of a key.
|
||||
*
|
||||
* \param[out] attributes The attribute structure to write to.
|
||||
* \param owner_id The key owner identifier.
|
||||
* \param owner The key owner identifier.
|
||||
*/
|
||||
static void mbedtls_set_key_owner_id( psa_key_attributes_t *attributes,
|
||||
mbedtls_key_owner_id_t owner_id );
|
||||
mbedtls_key_owner_id_t owner );
|
||||
#endif
|
||||
|
||||
/** Set the location of a persistent key.
|
||||
|
Loading…
Reference in New Issue
Block a user