summaryrefslogtreecommitdiffstats
path: root/c/src/libchip/serial/serprobe.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-07-09 23:29:33 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-07-09 23:29:33 +0000
commit61ff7ac8251fbd98cbbc0f031707413b8edb1691 (patch)
tree2fea73950b5567de1224079b823a29c93fc4c956 /c/src/libchip/serial/serprobe.c
parentCommented out the system call invocation since we don't know what works (diff)
downloadrtems-61ff7ac8251fbd98cbbc0f031707413b8edb1691.tar.bz2
Added new baud rate to number function and default serial probe routine.
Renamed sersupp.c so we could have one routine per file to decrease the baggage pulled into an application by default.
Diffstat (limited to 'c/src/libchip/serial/serprobe.c')
-rw-r--r--c/src/libchip/serial/serprobe.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/c/src/libchip/serial/serprobe.c b/c/src/libchip/serial/serprobe.c
new file mode 100644
index 0000000000..b76bbebe3c
--- /dev/null
+++ b/c/src/libchip/serial/serprobe.c
@@ -0,0 +1,20 @@
+/*
+ * $Id$
+ */
+
+#include <rtems.h>
+#include <libchip/serial.h>
+#include "sersupp.h"
+
+boolean libchip_serial_default_probe(int minor)
+{
+ /*
+ * If the configuration dependent probe has located the device then
+ * assume it is there
+ */
+
+ return TRUE;
+}
+
+
+