summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/shared/bspspuriousinit.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-24 07:27:30 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-24 10:24:24 +0200
commitc7410f17837037fc5dbe94a4dfbb8ed7330b5d29 (patch)
treea6263941243bdfd75560053a709476a1fad0f027 /c/src/lib/libbsp/m68k/shared/bspspuriousinit.c
parentbsps: Move spansionFlash.c to bsps (diff)
downloadrtems-c7410f17837037fc5dbe94a4dfbb8ed7330b5d29.tar.bz2
bsps/m68k: Remove unused files
This patch is a part of the BSP source reorganization. Update #3285.
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/m68k/shared/bspspuriousinit.c40
1 files changed, 0 insertions, 40 deletions
diff --git a/c/src/lib/libbsp/m68k/shared/bspspuriousinit.c b/c/src/lib/libbsp/m68k/shared/bspspuriousinit.c
deleted file mode 100644
index e60a40318f..0000000000
--- a/c/src/lib/libbsp/m68k/shared/bspspuriousinit.c
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * M68000 Spurious Trap Handler Install Routine
- *
- * This is just enough of a trap handler to let us know what
- * the likely source of the trap was.
- */
-
-/*
- * COPYRIGHT (c) 1989-2014.
- * 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.org/license/LICENSE.
- */
-
-#include <bsp.h>
-#include <rtems/bspIo.h>
-
-/*
- * bsp_spurious_initialize
- *
- * Install the spurious handler for most vectors.
- */
-void bsp_spurious_initialize(void)
-{
- uint32_t vector;
-
- for ( vector=0 ; vector<255 ; vector++ ) {
-
- /*
- * Skip any vectors that might be generally used for traps.
- *
- * XXX
- */
-
- set_vector( bsp_spurious_handler, vector, 1 );
- }
-
-}