source: rtems/c/src/lib/libcpu/arm/s3c24xx/irq/bsp_irq_init.c @ 1233af3

4.104.114.95
Last change on this file since 1233af3 was 1233af3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/20/08 at 05:52:39

Add missing prototypes.

  • Property mode set to 100644
File size: 874 bytes
Line 
1/* irq_init.c
2 *
3 *  This file contains the implementation of rtems initialization
4 *  related to interrupt handling.
5 *
6 *  CopyRight (C) 2000 Canon Research Centre France SA.
7 *  Emmanuel Raguet, mailto:raguet@crf.canon.fr
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#include <irq.h>
16#include <bsp.h>
17#include <s3c24xx.h>
18
19extern void default_int_handler(void);
20
21void BSP_rtems_irq_mngt_init(void)
22{
23    long *vectorTable;
24    int i;
25
26    vectorTable = (long *) VECTOR_TABLE;
27
28    /* Initialize the vector table contents with default handler */
29    for (i=0; i<BSP_MAX_INT; i++) {
30        *(vectorTable + i) = (long)(default_int_handler);
31    }
32
33    /*
34     * Here is the code to initialize the INT for
35     * the specified BSP
36     */
37}
Note: See TracBrowser for help on using the repository browser.