source: rtems/tools/cpu/nios2/bridges.h @ 5f5f681

4.104.115
Last change on this file since 5f5f681 was 5f5f681, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/10/09 at 07:20:06

Whitespace removal.

  • Property mode set to 100644
File size: 563 bytes
Line 
1/*
2 *  Copyright (c) 2006 Kolja Waschk rtemsdev/ixo.de
3 *
4 *  The license and distribution terms for this file may be
5 *  found in the file LICENSE in this distribution or at
6 *  http://www.rtems.com/license/LICENSE.
7 *
8 *  $Id$
9 */
10
11#ifndef __NIOS2GEN_BRIDGES_H
12#define __NIOS2GEN_BRIDGES_H 1
13
14typedef struct bus_bridge_pair
15{
16  char *mastered_by;
17  char *bridges_to;
18  struct bus_bridge_pair *next;
19}
20bus_bridge_pair;
21
22bus_bridge_pair *find_bridges(struct ptf *p);
23
24int is_bridged(
25  char *cpu_master,
26  char *dev_master,
27  bus_bridge_pair *bridges);
28
29#endif
30
31
Note: See TracBrowser for help on using the repository browser.