summaryrefslogtreecommitdiffstats
path: root/bsps/shared/dev/serial/serprobe.c
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/shared/dev/serial/serprobe.c')
-rw-r--r--bsps/shared/dev/serial/serprobe.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/bsps/shared/dev/serial/serprobe.c b/bsps/shared/dev/serial/serprobe.c
new file mode 100644
index 0000000000..7f8d392452
--- /dev/null
+++ b/bsps/shared/dev/serial/serprobe.c
@@ -0,0 +1,13 @@
+#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;
+}