risc-v/esp32c3: Prevent double initialization of SHA peripheral
Signed-off-by: Gustavo Henrique Nihei <gustavo.nihei@espressif.com>
This commit is contained in:
parent
7114cc2978
commit
739aca095a
@ -95,7 +95,8 @@ int esp32c3_bringup(void)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_ESP32C3_SHA_ACCELERATOR
|
#if defined(CONFIG_ESP32C3_SHA_ACCELERATOR) && \
|
||||||
|
!defined(CONFIG_CRYPTO_CRYPTODEV_HARDWARE)
|
||||||
ret = esp32c3_sha_init();
|
ret = esp32c3_sha_init();
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
{
|
{
|
||||||
|
@ -126,7 +126,8 @@ int esp32c3_bringup(void)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_ESP32C3_SHA_ACCELERATOR
|
#if defined(CONFIG_ESP32C3_SHA_ACCELERATOR) && \
|
||||||
|
!defined(CONFIG_CRYPTO_CRYPTODEV_HARDWARE)
|
||||||
ret = esp32c3_sha_init();
|
ret = esp32c3_sha_init();
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user