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

4.104.114.84.95
Last change on this file since df49c60 was 48bfd992, checked in by Joel Sherrill <joel.sherrill@…>, on 11/30/99 at 19:58:02

Renamed shm.h to shm_driver.h to avoid conflicts with POSIX shm.h.

Renamed file shmsupp/intr.c in some BSPs to shmsupp/cause_intr.c to
avoid conflict with rtems/src/intr.c (Classic API Interrupt Manager).

  • Property mode set to 100644
File size: 656 bytes
RevLine 
[ac7d5ef0]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 *
[08311cc3]12 *  COPYRIGHT (c) 1989-1999.
[ac7d5ef0]13 *  On-Line Applications Research Corporation (OAR).
14 *
[98e4ebf5]15 *  The license and distribution terms for this file may be
16 *  found in the file LICENSE in this distribution or at
[03f2154e]17 *  http://www.OARcorp.com/rtems/license.html.
[ac7d5ef0]18 *
19 *  $Id$
20 */
21
22#include <rtems.h>
23#include <bsp.h>
[48bfd992]24#include <shm_driver.h>
[ac7d5ef0]25
26void *Shm_Convert_address(
27  void *address
28)
29{
30  return ( address );
31}
Note: See TracBrowser for help on using the repository browser.