testsuites/validation/*: Address unused parameter warnings

Fixed many warnings for unused parameters. Some cases were
a simple matter of adding "(void) param" at the beginning
of the function, while others required ensuring that addition
was inside the proper conditional section. Found with GCC's
warning -Wunused-paramter.
This commit is contained in:
Joel Sherrill
2025-09-25 08:45:19 -05:00
parent 9c44cf0090
commit 748758758b
77 changed files with 384 additions and 9 deletions

View File

@@ -210,6 +210,8 @@ static const char * const * const RtemsUserextReqCreate_PreDesc[] = {
static rtems_status_code Create( void *arg, uint32_t *id )
{
(void) arg;
static const rtems_extensions_table table;
return rtems_extension_create(
@@ -544,6 +546,8 @@ static inline RtemsUserextReqCreate_Entry RtemsUserextReqCreate_PopEntry(
RtemsUserextReqCreate_Context *ctx
)
{
(void) ctx;
size_t index;
index = ctx->Map.index;