2008-08-18 Joel Sherrill <joel.sherrill@oarcorp.com>

* irq/irq_init.c: Fix warnings.
This commit is contained in:
Joel Sherrill
2008-08-18 21:17:16 +00:00
parent b679966dc9
commit 4243433bb2
2 changed files with 6 additions and 11 deletions

View File

@@ -1,3 +1,7 @@
2008-08-18 Joel Sherrill <joel.sherrill@oarcorp.com>
* irq/irq_init.c: Fix warnings.
2008-07-24 Sebastian Huber <sebastian.huber@embedded-brains.de>
* startup/bspstart.c: Changed bsp_get_workarea() to

View File

@@ -22,20 +22,11 @@
#include <libcpu/raw_exception.h>
#include <rtems/bspIo.h>
/*
* default on/off function
*/
static void nop_func(){}
/*
* default isOn function
*/
static int not_connected() {return 0;}
static rtems_irq_connect_data rtemsIrq[BSP_IRQ_NUMBER];
static rtems_irq_global_settings initial_config;
static rtems_irq_connect_data defaultIrq = {
/* vectorIdex, hdl , handle , on , off , isOn */
0, nop_func , NULL , nop_func , nop_func , not_connected
/* vectorIdex, hdl , handle , on , off , isOn */
0, NULL, NULL , NULL, NULL, NULL
};
static rtems_irq_prio irqPrioTable[BSP_IRQ_NUMBER]={
/*