mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-27 04:21:10 +00:00
Don't void actually used arguments
Signed-off-by: Steven Cooreman <steven.cooreman@silabs.com>
This commit is contained in:
parent
0f8ffa806b
commit
fa952958a5
|
@ -1163,7 +1163,6 @@ psa_status_t psa_driver_wrapper_hash_clone(
|
||||||
&target_operation->ctx.mbedtls_ctx ) );
|
&target_operation->ctx.mbedtls_ctx ) );
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
(void) source_operation;
|
|
||||||
(void) target_operation;
|
(void) target_operation;
|
||||||
return( PSA_ERROR_BAD_STATE );
|
return( PSA_ERROR_BAD_STATE );
|
||||||
}
|
}
|
||||||
|
@ -1188,7 +1187,6 @@ psa_status_t psa_driver_wrapper_hash_update(
|
||||||
input, input_length ) );
|
input, input_length ) );
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
(void) operation;
|
|
||||||
(void) input;
|
(void) input;
|
||||||
(void) input_length;
|
(void) input_length;
|
||||||
return( PSA_ERROR_BAD_STATE );
|
return( PSA_ERROR_BAD_STATE );
|
||||||
|
@ -1216,7 +1214,6 @@ psa_status_t psa_driver_wrapper_hash_finish(
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
(void) operation;
|
|
||||||
(void) hash;
|
(void) hash;
|
||||||
(void) hash_size;
|
(void) hash_size;
|
||||||
(void) hash_length;
|
(void) hash_length;
|
||||||
|
|
Loading…
Reference in a new issue