source: rtems/c/src/lib/libbsp/mips/rbtx4925/include/bsp.h @ 2d9eceb

4.115
Last change on this file since 2d9eceb was 2d9eceb, checked in by Joel Sherrill <joel.sherrill@…>, on 10/16/14 at 20:12:57

mips/rbtx4925: Fix warnings

  • Property mode set to 100644
File size: 875 bytes
Line 
1/**
2 *  @file
3 * 
4 *  This include file contains some definitions specific to the RBTX4925.
5 */
6
7/*
8 *  COPYRIGHT (c) 1989-2012.
9 *  On-Line Applications Research Corporation (OAR).
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.rtems.org/license/LICENSE.
14 */
15
16#ifndef _BSP_H
17#define _BSP_H
18
19#ifndef ASM
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25#include <bspopts.h>
26#include <bsp/default-initial-extension.h>
27
28#include <rtems.h>
29#include <rtems/iosupp.h>
30#include <rtems/console.h>
31#include <rtems/clockdrv.h>
32#include <libcpu/tx4925.h>
33
34#define BSP_FEATURE_IRQ_EXTENSION
35#define BSP_SHARED_HANDLER_SUPPORT      1
36
37/*
38 * Prototypes for methods called from .S for dependency tracking
39 */
40void init_tlb(void);
41void resettlb(int i);
42
43#ifdef __cplusplus
44}
45#endif
46
47#endif /* !ASM */
48
49#endif
Note: See TracBrowser for help on using the repository browser.