mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-28 15:09:53 +08:00
2010-04-30 Sebastian Huber <sebastian.huber@embedded-brains.de>
* shared/irq_init.c: Removed file. * Makefile.am: Reflect change above.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2010-04-30 Sebastian Huber <sebastian.huber@embedded-brains.de>
|
||||
|
||||
* shared/irq_init.c: Removed file.
|
||||
* Makefile.am: Reflect change above.
|
||||
|
||||
2010-04-09 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
|
||||
|
||||
* shared/irq/irq_init.c, shared/lpc/clock/lpc-clock-config.c,
|
||||
|
||||
@@ -15,9 +15,6 @@ EXTRA_DIST =
|
||||
EXTRA_DIST += shared/comm/uart.h
|
||||
EXTRA_DIST += shared/comm/uart.c
|
||||
|
||||
# irq
|
||||
EXTRA_DIST += shared/irq/irq_init.c
|
||||
|
||||
# abort
|
||||
EXTRA_DIST += shared/abort/simple_abort.c
|
||||
|
||||
|
||||
@@ -1,36 +0,0 @@
|
||||
/* irq_init.c
|
||||
*
|
||||
* This file contains the implementation of rtems initialization
|
||||
* related to interrupt handling.
|
||||
*
|
||||
* CopyRight (C) 2000 Canon Research Centre France SA.
|
||||
* Emmanuel Raguet, mailto:raguet@crf.canon.fr
|
||||
*
|
||||
* The license and distribution terms for this file may be
|
||||
* found in the file LICENSE in this distribution or at
|
||||
* http://www.rtems.com/license/LICENSE.
|
||||
*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
#include <irq.h>
|
||||
#include <bsp.h>
|
||||
#include <rtems/bspIo.h>
|
||||
|
||||
void default_int_handler(rtems_irq_hdl_param unused)
|
||||
{
|
||||
printk("raw_idt_notify has been called \n");
|
||||
}
|
||||
|
||||
void rtems_irq_mngt_init(void)
|
||||
{
|
||||
rtems_interrupt_level level;
|
||||
|
||||
rtems_interrupt_disable(level);
|
||||
|
||||
/* First, connect the ISR_Handler for IRQ interrupts */
|
||||
_CPU_ISR_install_vector(ARM_EXCEPTION_IRQ, arm_exc_interrupt, NULL);
|
||||
|
||||
/* Initialize the INT at the BSP level */
|
||||
BSP_rtems_irq_mngt_init();
|
||||
}
|
||||
Reference in New Issue
Block a user