nrfx_wdt: Remove incorrect assertion

Since nrfx 3.0.0 it is allowed to initialize the driver without
providing an initial configuration. Remove an assertion that still
ensures that such configuration was actually provided.

Signed-off-by: Andrzej Głąbek <andrzej.glabek@nordicsemi.no>
This commit is contained in:
Andrzej Głąbek 2023-11-20 16:08:00 +01:00
parent 2ff8ce6e6c
commit 04482574a7
1 changed files with 0 additions and 1 deletions

View File

@ -104,7 +104,6 @@ static nrfx_err_t wdt_init(nrfx_wdt_t const * p_instance,
nrfx_wdt_event_handler_t wdt_event_handler,
void * p_context)
{
NRFX_ASSERT(p_config);
nrfx_err_t err_code;
wdt_control_block_t * p_cb = &m_cb[p_instance->drv_inst_idx];