Skip to content

NRF: fix implicit declarations #13044

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#include "crys_dh.h"
#include "ssi_pal_types.h"
#include "ssi_aes.h"
#include "sns_silib.h"
#include "crys_aesccm.h"
#endif

Expand Down Expand Up @@ -780,7 +781,7 @@ void PalCryptoInit(void)
{
NVIC_EnableIRQ(CRYPTOCELL_IRQn);
NRF_CRYPTOCELL->ENABLE = 1;
SaSi_LibInit();
SaSi_LibInit(NULL, NULL);
}

/*************************************************************************************************/
Expand All @@ -793,7 +794,7 @@ void PalCryptoInit(void)
void PalCryptoDeInit(void)
{
NRF_CRYPTOCELL->ENABLE = 1;
SaSi_LibFini();
SaSi_LibFini(NULL);
NRF_CRYPTOCELL->ENABLE = 0;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ extern bool m_common_rtc_enabled;
extern uint32_t volatile m_common_rtc_overflows;
extern bool volatile lp_ticker_interrupt_fire;

void common_rtc_free(void);
void common_rtc_init(void);
uint32_t common_rtc_32bit_ticks_get(void);
uint64_t common_rtc_64bit_us_get(void);
Expand Down