mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-28 15:30:17 +00:00
14 lines
247 B
C
14 lines
247 B
C
#include <rtems.h>
|
|
#include <libchip/serial.h>
|
|
#include <libchip/sersupp.h>
|
|
|
|
bool libchip_serial_default_probe(int minor)
|
|
{
|
|
/*
|
|
* If the configuration dependent probe has located the device then
|
|
* assume it is there
|
|
*/
|
|
|
|
return true;
|
|
}
|