summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/shared/setvec.c
diff options
context:
space:
mode:
authorGedare Bloom <gedare@rtems.org>2012-04-15 22:26:41 -0400
committerGedare Bloom <gedare@rtems.org>2012-04-16 13:11:20 -0400
commit06d34af96f4efa7187fbdb1f4b0e421b3458ba55 (patch)
treeacb1c73b7e505d5d355306a6ec4d240354ad2c57 /c/src/lib/libbsp/m68k/shared/setvec.c
parentlm32: replace lm32_isr with rtems_isr (diff)
downloadrtems-06d34af96f4efa7187fbdb1f4b0e421b3458ba55.tar.bz2
m68k: use shared setvec.c
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/m68k/shared/setvec.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/c/src/lib/libbsp/m68k/shared/setvec.c b/c/src/lib/libbsp/m68k/shared/setvec.c
deleted file mode 100644
index 7142edd5ef..0000000000
--- a/c/src/lib/libbsp/m68k/shared/setvec.c
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- *
- * This routine installs an interrupt vector using the basic
- * RTEMS mechanisms. This implementation should be suitable for
- * most m68k based boards. However, if the board has an unusual
- * interrupt controller or most somehow manipulate board specific
- * hardware to enable/disable, mask, prioritize, etc an interrupt
- * source, then this routine should be customized to support that.
- *
- * COPYRIGHT (c) 1989-1999.
- * On-Line Applications Research Corporation (OAR).
- *
- * 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 <rtems.h>
-#include <bsp.h>
-
-rtems_isr_entry set_vector( /* returns old vector */
- rtems_isr_entry handler, /* isr routine */
- rtems_vector_number vector, /* vector number */
- int type /* RTEMS or RAW intr */
-)
-{
- rtems_isr_entry previous_isr;
-
- if ( type )
- rtems_interrupt_catch( handler, vector, &previous_isr );
- else {
- _CPU_ISR_install_raw_handler( vector, handler, (void *)&previous_isr );
- }
- return (rtems_isr_entry) previous_isr;
-}