summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mvme147s/shmsupp/addrconv.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-09-18 14:17:54 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-09-18 14:17:54 +0000
commitafe99c27dbac7e76118108b5f33a5b0fc930580e (patch)
treeb8f7954bd2fd02d23aa43ba91501024e97441df8 /c/src/lib/libbsp/m68k/mvme147s/shmsupp/addrconv.c
parentextended Task_id and Task_name arrays to avoid indexing past end of array. (diff)
downloadrtems-afe99c27dbac7e76118108b5f33a5b0fc930580e.tar.bz2
new file submitted by Dominique le Campion.
Diffstat (limited to 'c/src/lib/libbsp/m68k/mvme147s/shmsupp/addrconv.c')
-rw-r--r--c/src/lib/libbsp/m68k/mvme147s/shmsupp/addrconv.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/m68k/mvme147s/shmsupp/addrconv.c b/c/src/lib/libbsp/m68k/mvme147s/shmsupp/addrconv.c
new file mode 100644
index 0000000000..1acf985ad7
--- /dev/null
+++ b/c/src/lib/libbsp/m68k/mvme147s/shmsupp/addrconv.c
@@ -0,0 +1,36 @@
+/* Shm_Convert_address
+ *
+ * This MVME147 has a "normal" view of the VME address space.
+ * No address range conversion is required.
+ *
+ * Input parameters:
+ * address - address to convert
+ *
+ * Output parameters:
+ * returns - converted address
+ *
+ * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
+ * On-Line Applications Research Corporation (OAR).
+ * All rights assigned to U.S. Government, 1994.
+ *
+ * This material may be reproduced by or for the U.S. Government pursuant
+ * to the copyright license under the clause at DFARS 252.227-7013. This
+ * notice must appear in all copies of this file and its derivatives.
+ *
+ * MVME147 port for TNI - Telecom Bretagne
+ * by Dominique LE CAMPION (Dominique.LECAMPION@enst-bretagne.fr)
+ * June 1996
+ *
+ * $Id$
+ */
+
+#include <rtems.h>
+#include <bsp.h>
+#include <shm.h>
+
+void *Shm_Convert_address(
+ void *address
+)
+{
+ return ( address );
+}