source: rtems/c/src/lib/libbsp/m68k/mvme136/shmsupp/addrconv.c @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 639 bytes
Line 
1/*  Shm_Convert_address
2 *
3 *  This MVME136 has a "normal" view of the VME address space.
4 *  No address range conversion is required.
5 *
6 *  Input parameters:
7 *    address - address to convert
8 *
9 *  Output parameters:
10 *    returns - converted address
11 *
12 *  COPYRIGHT (c) 1989-1999.
13 *  On-Line Applications Research Corporation (OAR).
14 *
15 *  The license and distribution terms for this file may be
16 *  found in the file LICENSE in this distribution or at
17 *  http://www.rtems.org/license/LICENSE.
18 */
19
20#include <rtems.h>
21#include <bsp.h>
22#include <shm_driver.h>
23
24void *Shm_Convert_address(
25  void *address
26)
27{
28  return ( address );
29}
Note: See TracBrowser for help on using the repository browser.