mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-24 21:37:11 +00:00
Add "(void) param;" annotation to address unused parameter warnings. Found with GCC's warning -Wunused-parameter.
16 lines
264 B
C
16 lines
264 B
C
#include <rtems.h>
|
|
#include <libchip/serial.h>
|
|
#include <libchip/sersupp.h>
|
|
|
|
bool libchip_serial_default_probe(int minor)
|
|
{
|
|
(void) minor;
|
|
|
|
/*
|
|
* If the configuration dependent probe has located the device then
|
|
* assume it is there
|
|
*/
|
|
|
|
return true;
|
|
}
|