TEMP & ECB: Fix INTEN sideeffect prototypes

This functions had been renamed, but the prototypes
stayed behind. Fix it.

Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
This commit is contained in:
Alberto Escolar Piedras 2023-09-28 16:16:29 +02:00
parent 50c2abee77
commit f4595802d3
4 changed files with 6 additions and 6 deletions

View File

@ -11,8 +11,8 @@
extern "C"{
#endif
void nhw_ecb_regw_sideeffects_INTENSET(void);
void nhw_ecb_regw_sideeffects_INTENCLEAR(void);
void nhw_ECB_regw_sideeffects_INTENSET(void);
void nhw_ECB_regw_sideeffects_INTENCLR(void);
void nhw_ECB_regw_sideeffects_TASKS_STARTECB(void);
void nhw_ECB_regw_sideeffects_TASKS_STOPECB(void);
void nhw_ECB_regw_sideeffects_SUBSCRIBE_STARTECB(unsigned int inst);

View File

@ -13,7 +13,7 @@ extern "C"{
void nhw_TEMP_regw_sideeffects_TASKS_START(void);
void nhw_TEMP_regw_sideeffects_TASKS_STOP(void);
void nhw_TEMP_regw_sideeffects_INTENSET(void);
void nhw_TEMP_regw_sideeffects_INTENCLEAR(void);
void nhw_TEMP_regw_sideeffects_INTENCLR(void);
void nhw_TEMP_TASK_START(void);
void nhw_TEMP_TASK_STOP(void);
void nhw_TEMP_regw_sideeffects_SUBSCRIBE_START(unsigned int inst);

View File

@ -25,13 +25,13 @@ void nrf_ecb_task_trigger(NRF_ECB_Type * p_reg, nrf_ecb_task_t task)
void nrf_ecb_int_enable(NRF_ECB_Type * p_reg, uint32_t mask)
{
p_reg->INTENSET = mask;
nhw_ecb_regw_sideeffects_INTENSET();
nhw_ECB_regw_sideeffects_INTENSET();
}
void nrf_ecb_int_disable(NRF_ECB_Type * p_reg, uint32_t mask)
{
p_reg->INTENCLR = mask;
nhw_ecb_regw_sideeffects_INTENCLEAR();
nhw_ECB_regw_sideeffects_INTENCLR();
}
void nrf_ecb_event_clear(NRF_ECB_Type * p_reg, nrf_ecb_event_t event)

View File

@ -31,7 +31,7 @@ void nrf_temp_int_enable(NRF_TEMP_Type * p_reg, uint32_t mask)
void nrf_temp_int_disable(NRF_TEMP_Type * p_reg, uint32_t mask)
{
NRF_TEMP_regs.INTENCLR = mask;
nhw_TEMP_regw_sideeffects_INTENCLEAR();
nhw_TEMP_regw_sideeffects_INTENCLR();
}
void nrf_temp_event_clear(NRF_TEMP_Type * p_reg, nrf_temp_event_t event)