mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-11-16 12:34:45 +00:00
arm/realview-pbx-a9: 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
6666bc0c33
commit
c9798a0f80
@@ -30,21 +30,29 @@
|
||||
|
||||
static void fb_set_up(const pl111_fb_config *cfg)
|
||||
{
|
||||
(void) cfg;
|
||||
|
||||
/* TODO */
|
||||
}
|
||||
|
||||
static void fb_pins_set_up(const pl111_fb_config *cfg)
|
||||
{
|
||||
(void) cfg;
|
||||
|
||||
/* TODO */
|
||||
}
|
||||
|
||||
static void fb_pins_tear_down(const pl111_fb_config *cfg)
|
||||
{
|
||||
(void) cfg;
|
||||
|
||||
/* TODO */
|
||||
}
|
||||
|
||||
static void fb_tear_down(const pl111_fb_config *cfg)
|
||||
{
|
||||
(void) cfg;
|
||||
|
||||
/* TODO */
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user