From c361e68a6b81d05abd2ff5ab5609c0148c9dbce9 Mon Sep 17 00:00:00 2001 From: kar-rahul-aws Date: Fri, 28 Feb 2025 11:00:58 +0530 Subject: [PATCH] Remove redundant configASSERT in timers.c --- timers.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/timers.c b/timers.c index 0eca674cf..60a5a616f 100644 --- a/timers.c +++ b/timers.c @@ -458,8 +458,6 @@ traceENTER_xTimerGenericCommandFromTask( xTimer, xCommandID, xOptionalValue, pxHigherPriorityTaskWoken, xTicksToWait ); - configASSERT( xTimer ); - /* Send a message to the timer service task to perform a particular action * on a particular timer definition. */ if( ( xTimerQueue != NULL ) && ( xTimer != NULL ) ) @@ -509,8 +507,6 @@ traceENTER_xTimerGenericCommandFromISR( xTimer, xCommandID, xOptionalValue, pxHigherPriorityTaskWoken, xTicksToWait ); - configASSERT( xTimer ); - /* Send a message to the timer service task to perform a particular action * on a particular timer definition. */ if( ( xTimerQueue != NULL ) && ( xTimer != NULL ) )