validation: Remove unused parameters

Remove actually unused parameters which would have been flagged by a
warning.
This commit is contained in:
Sebastian Huber
2025-10-21 03:08:58 +02:00
committed by Gedare Bloom
parent e66a33fd7a
commit 82ad3746f9
3 changed files with 11 additions and 22 deletions

View File

@@ -527,11 +527,9 @@ RTEMS_CONST static int const_func( int arg )
}
RTEMS_COMPILER_NO_RETURN_ATTRIBUTE
static void compiler_no_return_attribute_func( int i );
static void compiler_no_return_attribute_func( int i )
static void compiler_no_return_attribute_func( void );
static void compiler_no_return_attribute_func( void )
{
(void) i;
while ( true ) {
/* Loop forever */
}
@@ -577,10 +575,8 @@ RTEMS_NO_INLINE static int no_inline_func( void )
return 75;
}
RTEMS_NO_RETURN static void no_return_func( int i )
RTEMS_NO_RETURN static void no_return_func( void )
{
(void) i;
while ( true ) {
/* Loop forever */
}

View File

@@ -270,14 +270,10 @@ static const rtems_task_priority background_task_priority = 100;
static const rtems_task_priority foreground_task_priority = 10;
static const rtems_event_set wake_main_task_event = RTEMS_EVENT_17;
static void TickTheClock(
RtemsRatemonReqCancel_Context *ctx,
uint32_t ticks
)
static void TickTheClock( uint32_t ticks )
{
(void) ctx;
uint32_t i;
for ( i = 0; i < ticks; ++i ) {
TimecounterTick();
}
@@ -327,14 +323,16 @@ static void CreatePostponedJobs(
)
{
rtems_status_code status;
ctx->postponed_jobs_count = jobs_count;
if ( ctx->previous_state == RATE_MONOTONIC_ACTIVE ) {
TickTheClock( ctx, ( jobs_count + 1 ) * period_length );
TickTheClock( ( jobs_count + 1 ) * period_length );
status = rtems_rate_monotonic_period( ctx->period_id, period_length );
T_rsc( status, RTEMS_TIMEOUT );
} else {
/* ctx->previous_state == RATE_MONOTONIC_INACTIVE || _EXPIRED */
TickTheClock( ctx, jobs_count * period_length );
TickTheClock( jobs_count * period_length );
}
}

View File

@@ -387,19 +387,14 @@ static bool IntendsToBlockForEvent( Context *ctx, Thread_Wait_flags flags )
return flags == ( ctx->wait_class | THREAD_WAIT_STATE_INTEND_TO_BLOCK );
}
static bool IsReady( Context *ctx, Thread_Wait_flags flags )
static bool IsReady( Thread_Wait_flags flags )
{
(void) ctx;
return flags == THREAD_WAIT_STATE_READY;
}
static bool IsSatisfiedFlags( Context *ctx )
{
return IsReady(
ctx,
_Thread_Wait_flags_get( ctx->runner_thread )
);
return IsReady( _Thread_Wait_flags_get( ctx->runner_thread ) );
}
static bool IsSatisfiedState( Context *ctx )