summaryrefslogtreecommitdiffstats
path: root/c/src/libchip/rtc/rtcprobe.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/libchip/rtc/rtcprobe.c')
-rw-r--r--c/src/libchip/rtc/rtcprobe.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/c/src/libchip/rtc/rtcprobe.c b/c/src/libchip/rtc/rtcprobe.c
new file mode 100644
index 0000000000..6aaad89486
--- /dev/null
+++ b/c/src/libchip/rtc/rtcprobe.c
@@ -0,0 +1,24 @@
+/*
+ * This file contains the default Real-Time Clock probe routine.
+ *
+ * COPYRIGHT (c) 1989-1998.
+ * On-Line Applications Research Corporation (OAR).
+ * Copyright assigned to U.S. Government, 1994.
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
+ */
+
+#include <rtems.h>
+#include <libchip/rtc.h>
+
+
+boolean rtc_probe(
+ int minor
+)
+{
+ return TRUE;
+}