mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Code: Remove redundant check (#287)
This commit is contained in:
parent
6b72419c78
commit
9cd19603e8
3
timers.c
3
timers.c
|
@ -350,8 +350,6 @@
|
|||
/* 0 is not a valid value for xTimerPeriodInTicks. */
|
||||
configASSERT( ( xTimerPeriodInTicks > 0 ) );
|
||||
|
||||
if( pxNewTimer != NULL )
|
||||
{
|
||||
/* Ensure the infrastructure used by the timer service task has been
|
||||
* created/initialised. */
|
||||
prvCheckForValidListAndQueue();
|
||||
|
@ -371,7 +369,6 @@
|
|||
|
||||
traceTIMER_CREATE( pxNewTimer );
|
||||
}
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
BaseType_t xTimerGenericCommand( TimerHandle_t xTimer,
|
||||
|
|
Loading…
Reference in a new issue