* shared/irq_init.c: Removed file.
	* Makefile.am: Reflect change above.
This commit is contained in:
Sebastian Huber
2010-04-30 13:21:08 +00:00
parent f4dc319a8f
commit 439d00cab3
3 changed files with 5 additions and 39 deletions
+5
View File
@@ -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,
-3
View File
@@ -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();
}