source: rtems/c/src/lib/libbsp/m68k/mvme147s/shmsupp/addrconv.c @ f4fe0092

4.104.114.84.95
Last change on this file since f4fe0092 was 4d7f067, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:52:02

2003-09-04 Joel Sherrill <joel@…>

  • include/bsp.h, include/coverhd.h, shmsupp/addrconv.c, shmsupp/getcfg.c, shmsupp/lock.c, shmsupp/mpisr.c, startup/bspstart.c, startup/linkcmds: URL for license changed.
  • Property mode set to 100644
File size: 779 bytes
Line 
1/*  Shm_Convert_address
2 *
3 *  This MVME147 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.com/license/LICENSE.
18 *
19 *  MVME147 port for TNI - Telecom Bretagne
20 *  by Dominique LE CAMPION (Dominique.LECAMPION@enst-bretagne.fr)
21 *  June 1996
22 *
23 *  $Id$
24 */
25
26#include <rtems.h>
27#include <bsp.h>
28#include <shm_driver.h>
29
30void *Shm_Convert_address(
31  void *address
32)
33{
34  return ( address );
35}
Note: See TracBrowser for help on using the repository browser.