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

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 562 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.org/license/LICENSE.
7 */
8
9#ifndef __NIOS2GEN_DEVICES_H
10#define __NIOS2GEN_DEVICES_H 1
11
12#include "ptf.h"
13#include "bridges.h"
14
15typedef struct dev_descr
16{
17  int slaves;
18  char *cfgname;
19  struct ptf *ptf;
20  struct dev_descr *next;
21}
22device_desc;
23
24device_desc *find_devices(
25  struct ptf *ptf,
26  struct ptf *cfg,
27  struct ptf *cpu,
28  bus_bridge_pair *bridges);
29
30#endif
Note: See TracBrowser for help on using the repository browser.