source: rtems/c/src/lib/libbsp/arm/edb7312/include/bsp.h @ cfaa366

4.115
Last change on this file since cfaa366 was cfaa366, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 17:55:58

General - Remove extraneous blank line in license message

Many files had an extra blank line in the license text
found in the file header. This patch removes that line.

The script that did this also turned off execute permission
when it was turned on incorrectly.

  • Property mode set to 100644
File size: 994 bytes
Line 
1/*
2 * Cirrus EP7312 BSP header file
3 *
4 * Copyright (c) 2002 by Jay Monkman <jtm@smoothsmoothie.com>
5 *
6 *  The license and distribution terms for this file may be
7 *  found in the file LICENSE in this distribution or at
8 *  http://www.rtems.com/license/LICENSE.
9 *
10 *
11 *  $Id$
12*/
13#ifndef _BSP_H
14#define _BSP_H
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
20#include <bspopts.h>
21
22#include <rtems.h>
23#include <rtems/iosupp.h>
24#include <rtems/console.h>
25#include <rtems/clockdrv.h>
26
27#define BSP_FEATURE_IRQ_EXTENSION
28
29/*
30 *  Define the interrupt mechanism for Time Test 27
31 *
32 *  NOTE: Following are not defined and are board independent
33 *
34 */
35struct rtems_bsdnet_ifconfig;
36int cs8900_driver_attach (struct rtems_bsdnet_ifconfig *config,
37                          int                          attaching);
38
39/*
40 * Network driver configuration
41 */
42#define RTEMS_BSP_NETWORK_DRIVER_NAME   "eth0"
43#define RTEMS_BSP_NETWORK_DRIVER_ATTACH cs8900_driver_attach
44
45#ifdef __cplusplus
46}
47#endif
48
49#endif /* _BSP_H */
Note: See TracBrowser for help on using the repository browser.