summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mvme162/include
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-01-18 06:01:23 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-01-18 06:01:23 +0000
commit9afd70ec217fafe960f78a7df8763994d29f8d50 (patch)
treee126ca8331767a9bc0d3b222d6e1b433fb0724cd /c/src/lib/libbsp/m68k/mvme162/include
parent2005-01-18 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-9afd70ec217fafe960f78a7df8763994d29f8d50.tar.bz2
2005-01-18 Ralf Corsepius <ralf.corsepius@rtems.org>
* Makefile.am: Use ../../shared/tod.h instead of include/tod.h. * include/tod.h: Remove.
Diffstat (limited to 'c/src/lib/libbsp/m68k/mvme162/include')
-rw-r--r--c/src/lib/libbsp/m68k/mvme162/include/tod.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/c/src/lib/libbsp/m68k/mvme162/include/tod.h b/c/src/lib/libbsp/m68k/mvme162/include/tod.h
deleted file mode 100644
index 7335b2b4f1..0000000000
--- a/c/src/lib/libbsp/m68k/mvme162/include/tod.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Real Time Clock (MK48T08) for RTEMS on MVME162
- *
- * Author:
- * COPYRIGHT (C) 1997
- * by Katsutoshi Shibuya - BU Denken Co.,Ltd. - Sapporo - JAPAN
- * ALL RIGHTS RESERVED
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * This material is a part of the MVME162 Board Support Package
- * for the RTEMS executive. Its licensing policies are those of the
- * RTEMS above.
- *
- * $Id$
- */
-
-#ifndef TOD_H
-#define TOD_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-extern void setRealTimeToRTEMS();
-/* Read real time from RTC and set it to RTEMS' clock manager */
-
-extern void setRealTimeFromRTEMS();
-/* Read time from RTEMS' clock manager and set it to RTC */
-
-extern int checkRealTime();
-/* Return the difference between RTC and RTEMS' clock manager time in minutes.
- If the difference is greater than 1 day, this returns 9999. */
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif