mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-11-16 12:34:45 +00:00
bsps/shared/aarch64: 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
f89a27b40f
commit
2b7cd2dd38
@@ -45,5 +45,9 @@ rtems_status_code aarch64_mmu_map(
|
|||||||
uint64_t flags
|
uint64_t flags
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
(void) addr;
|
||||||
|
(void) size;
|
||||||
|
(void) flags;
|
||||||
|
|
||||||
return RTEMS_SUCCESSFUL;
|
return RTEMS_SUCCESSFUL;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,6 +40,8 @@
|
|||||||
|
|
||||||
static void bsp_inter_processor_interrupt( void *arg )
|
static void bsp_inter_processor_interrupt( void *arg )
|
||||||
{
|
{
|
||||||
|
(void) arg;
|
||||||
|
|
||||||
_SMP_Inter_processor_interrupt_handler( _Per_CPU_Get() );
|
_SMP_Inter_processor_interrupt_handler( _Per_CPU_Get() );
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -52,6 +54,8 @@ static rtems_interrupt_entry aarch64_ipi_entry;
|
|||||||
|
|
||||||
void _CPU_SMP_Finalize_initialization( uint32_t cpu_count )
|
void _CPU_SMP_Finalize_initialization( uint32_t cpu_count )
|
||||||
{
|
{
|
||||||
|
(void) cpu_count;
|
||||||
|
|
||||||
rtems_status_code sc;
|
rtems_status_code sc;
|
||||||
|
|
||||||
rtems_interrupt_entry_initialize(
|
rtems_interrupt_entry_initialize(
|
||||||
|
|||||||
Reference in New Issue
Block a user