Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:24:08

0001 /*  Shm_Convert_address
0002  *
0003  *  No address range conversion is required.
0004  *
0005  *  Input parameters:
0006  *    address - address to convert
0007  *
0008  *  Output parameters:
0009  *    returns - converted address
0010  *
0011  *  COPYRIGHT (c) 1989-1999.
0012  *  On-Line Applications Research Corporation (OAR).
0013  *
0014  *  The license and distribution terms for this file may be
0015  *  found in the file LICENSE in this distribution or at
0016  *  http://www.rtems.org/license/LICENSE.
0017  */
0018 
0019 #include <rtems.h>
0020 #include <bsp.h>
0021 #include <shm_driver.h>
0022 
0023 void *Shm_Convert_address(
0024   void *address
0025 )
0026 {
0027   return ( address );
0028 }