bsps/shared/grlib: Address unused parameter warnings

Add "(void) param;" annotation to address unused parameter warnings.
Found with GCC's warning -Wunused-parameter.
This commit is contained in:
Joel Sherrill
2025-10-10 14:18:31 -05:00
committed by Gedare Bloom
parent 883f06737b
commit 1339ef1b10
33 changed files with 266 additions and 6 deletions

View File

@@ -638,6 +638,9 @@ int l4stat_counter_print(unsigned int counter)
/* DEBUG print */
DBG("L4STAT COUNTER[%d], Event: %s, Count: %d [0x%08x]\n",
counter, l4stat_event_names[event],val,val);
#else
(void) counter;
#endif /* DEBUG */
return L4STAT_ERR_OK;