From e31fd11ab35938a057c31737a25dd98f337a4fff Mon Sep 17 00:00:00 2001 From: Ronald Cron Date: Thu, 1 Apr 2021 10:47:14 +0200 Subject: [PATCH] psa: include: Fix comments Signed-off-by: Ronald Cron --- include/psa/crypto_driver_contexts.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/psa/crypto_driver_contexts.h b/include/psa/crypto_driver_contexts.h index bee6895e8..81428a480 100644 --- a/include/psa/crypto_driver_contexts.h +++ b/include/psa/crypto_driver_contexts.h @@ -41,7 +41,7 @@ * of both this file and the content of psa_crypto_driver_wrappers.c */ typedef union { - unsigned dummy; /* Make sure this structure is always non-empty */ + unsigned dummy; /* Make sure this union is always non-empty */ mbedtls_psa_hash_operation_t mbedtls_ctx; #if defined(PSA_CRYPTO_DRIVER_TEST) mbedtls_transparent_test_driver_hash_operation_t test_driver_ctx; @@ -49,7 +49,7 @@ typedef union { } psa_driver_hash_context_t; typedef union { - unsigned dummy; /* Make sure this structure is always non-empty */ + unsigned dummy; /* Make sure this union is always non-empty */ mbedtls_psa_cipher_operation_t mbedtls_ctx; #if defined(PSA_CRYPTO_DRIVER_TEST) mbedtls_transparent_test_driver_cipher_operation_t transparent_test_driver_ctx;