Files
rtems/bsps/shared/dev/serial/serprobe.c
Joel Sherrill bc959e983f bsps/shared/*: Address unused parameter warnings
Add "(void) param;" annotation to address unused parameter warnings.
Found with GCC's warning -Wunused-parameter.
2025-10-10 20:52:14 +00:00

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;
}