source: rtems/c/src/lib/libbsp/mips/csb350/include/bsp.h @ 89fc9341

4.104.115
Last change on this file since 89fc9341 was 89fc9341, checked in by Joel Sherrill <joel.sherrill@…>, on 09/18/08 at 17:40:14

2008-09-18 Joel Sherrill <joel.sherrill@…>

  • include/bsp.h, include/tm27.h: Remove unnecessary boilerplate comments.
  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*  bsp.h
2 *
3 *  This include file contains some definitions specific to the
4 *  Cogent CSB350 Board.
5 *
6 *  COPYRIGHT (c) 1989-2000.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.com/license/LICENSE.
12 *
13 *  $Id$
14 */
15
16#ifndef _BSP_H
17#define _BSP_H
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23#include <bspopts.h>
24
25#include <rtems.h>
26#include <rtems/iosupp.h>
27#include <rtems/console.h>
28#include <rtems/clockdrv.h>
29#include <libcpu/au1x00.h>
30
31
32/*
33 * Network driver configuration
34 */
35extern struct rtems_bsdnet_ifconfig *config;
36
37int rtems_au1x00_emac_attach(struct rtems_bsdnet_ifconfig *config,
38                             int attaching);
39#define RTEMS_BSP_NETWORK_DRIVER_NAME   "eth0"
40#define RTEMS_BSP_NETWORK_DRIVER_ATTACH rtems_au1x00_emac_attach
41
42/* functions */
43
44rtems_isr_entry set_vector(
45  rtems_isr_entry, rtems_vector_number, int );
46
47#ifdef __cplusplus
48}
49#endif
50
51#endif
Note: See TracBrowser for help on using the repository browser.