source: rtems/c/src/lib/libcpu/arm/mc9328mxl/irq/bsp_irq_init.c @ c193baad

4.104.115
Last change on this file since c193baad was c193baad, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 04/09/10 at 20:24:57

unify irq data types and code, merge s3c2400/s3c2410 support

  • Property mode set to 100644
File size: 615 bytes
Line 
1/*
2 * Motorola MC9328MXL Interrupt handler
3 *
4 * Copyright (c) 2004 by Jay Monkman <jtm@lopingdog.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 *
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *
12 *  $Id$
13 */
14#include <irq.h>
15#include <bsp.h>
16
17/*
18 * Interrupt system initialization. Disable interrupts, clear
19 * any that are pending.
20 */
21void BSP_rtems_irq_mngt_init(void)
22{
23    int i;
24
25    for (i = 0; i < BSP_MAX_INT; i++) {
26        bsp_vector_table[i].vector = default_int_handler;
27        bsp_vector_table[i].data   = NULL;
28    }
29}
30
Note: See TracBrowser for help on using the repository browser.