2007-11-30 Till Straumann <strauman@slac.stanford.edu>

* Makefile.am, irq/irq.h, irq/no_pic.c: install
	and use new <irq/irq_supp.h> header.
This commit is contained in:
Till Straumann
2007-11-30 21:44:17 +00:00
parent 76e9cda9da
commit 393a1e0584
4 changed files with 8 additions and 6 deletions

View File

@@ -1,3 +1,8 @@
2007-11-30 Till Straumann <strauman@slac.stanford.edu>
* Makefile.am, irq/irq.h, irq/no_pic.c: install
and use new <irq/irq_supp.h> header.
2007-11-30 Till Straumann <strauman@slac.stanford.edu>
* irq/irq.h, irq/irq_init.c: Removed the definition
of ASM_IRQ_VECTOR_BASE; this symbol was only use to

View File

@@ -62,7 +62,7 @@ consoleio_rel_SOURCES = console/console-io.c console/consupp.S
consoleio_rel_CPPFLAGS = $(AM_CPPFLAGS)
consoleio_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
include_bsp_HEADERS = irq/irq.h
include_bsp_HEADERS = irq/irq.h ../shared/irq/irq_supp.h
noinst_PROGRAMS += irq.rel
irq_rel_SOURCES = ../shared/irq/irq.c irq/irq_init.c ../shared/irq/irq_asm.S irq/no_pic.c

View File

@@ -46,11 +46,7 @@
*/
#define BSP_DECREMENTER (BSP_PROCESSOR_IRQ_LOWEST_OFFSET)
/* dummy routines - there is no PIC */
void BSP_enable_irq_at_pic(const rtems_irq_number);
void BSP_disable_irq_at_pic(const rtems_irq_number);
int BSP_setup_the_pic(rtems_irq_global_settings *);
#include <bsp/irq_supp.h>
#endif
#endif

View File

@@ -17,6 +17,7 @@
#include <rtems.h>
#include <bsp.h>
#include <bsp/irq.h>
#include <bsp/irq_supp.h>
#include <libcpu/raw_exception.h>
static rtems_irq_connect_data *rtems_hdl_tbl;