Files
rtems/bsps/shared/dev/serial/serprobe.c
Sebastian Huber 27de4e1fb8 bsps: Move libchip to bsps
This patch is a part of the BSP source reorganization.

Update #3285.
2018-04-04 10:13:28 +02:00

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