From 28d483ef2fa0ed6b24bd5f942ccaa3c9c1b72b58 Mon Sep 17 00:00:00 2001 From: Derek Miller Date: Fri, 15 Feb 2019 17:18:03 -0600 Subject: [PATCH] removed * from entropy function pointers as they are already pointers --- include/psa/crypto_entropy_driver.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/psa/crypto_entropy_driver.h b/include/psa/crypto_entropy_driver.h index 79b7f7fd5..1d94432ef 100644 --- a/include/psa/crypto_entropy_driver.h +++ b/include/psa/crypto_entropy_driver.h @@ -95,10 +95,10 @@ typedef struct { /** The driver-specific size of the entropy context */ const size_t context_size; /** Function that performs initialization for the entropy source */ - psa_drv_entropy_init_t *p_init; + psa_drv_entropy_init_t p_init; /** Function that performs the get_bits operation for the entropy source */ - psa_drv_entropy_get_bits_t *p_get_bits; + psa_drv_entropy_get_bits_t p_get_bits; } psa_drv_entropy_t; /**@}*/