mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 14:18:20 +00:00
bsps/shared/*: 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:
committed by
Gedare Bloom
parent
1339ef1b10
commit
bc959e983f
@@ -112,6 +112,8 @@ static void bsp_interrupt_server_per_handler_routine(
|
||||
void *handler_arg
|
||||
)
|
||||
{
|
||||
(void) info;
|
||||
|
||||
if (handler == bsp_interrupt_server_trigger) {
|
||||
bsp_interrupt_server_iterate_entry *ie = iterate_arg;
|
||||
|
||||
@@ -379,6 +381,8 @@ rtems_status_code rtems_interrupt_server_handler_install(
|
||||
void *arg
|
||||
)
|
||||
{
|
||||
(void) info;
|
||||
|
||||
rtems_status_code sc;
|
||||
rtems_interrupt_server_control *s;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user