source: rtems/bsps/powerpc/psim/mpci/addrconv.c @ a2dad96

5
Last change on this file since a2dad96 was 1efa1c8, checked in by Sebastian Huber <sebastian.huber@…>, on 04/20/18 at 11:38:33

bsps: Move MPCI support to bsps

This patch is a part of the BSP source reorganization.

Update #3285.

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