summaryrefslogtreecommitdiffstats
path: root/bsps/m68k/mvme147s/mpci/addrconv.c
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/m68k/mvme147s/mpci/addrconv.c')
-rw-r--r--bsps/m68k/mvme147s/mpci/addrconv.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/bsps/m68k/mvme147s/mpci/addrconv.c b/bsps/m68k/mvme147s/mpci/addrconv.c
new file mode 100644
index 0000000000..0ed0fdbed1
--- /dev/null
+++ b/bsps/m68k/mvme147s/mpci/addrconv.c
@@ -0,0 +1,33 @@
+/* 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-1999.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ *
+ * MVME147 port for TNI - Telecom Bretagne
+ * by Dominique LE CAMPION (Dominique.LECAMPION@enst-bretagne.fr)
+ * June 1996
+ */
+
+#include <rtems.h>
+#include <bsp.h>
+#include <shm_driver.h>
+
+void *Shm_Convert_address(
+ void *address
+)
+{
+ return ( address );
+}