source: rtems/tools/cpu/nios2/devices.h @ e8cf7b5

4.104.115
Last change on this file since e8cf7b5 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: 574 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_DEVICES_H
12#define __NIOS2GEN_DEVICES_H 1
13
14#include "ptf.h"
15#include "bridges.h"
16
17typedef struct dev_descr
18{
19  int slaves;
20  char *cfgname;
21  struct ptf *ptf;
22  struct dev_descr *next;
23}
24device_desc;
25
26device_desc *find_devices(
27  struct ptf *ptf,
28  struct ptf *cfg,
29  struct ptf *cpu,
30  bus_bridge_pair *bridges);
31
32#endif
Note: See TracBrowser for help on using the repository browser.