summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/powerpc/ppc-isr-vector-install.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-09 07:56:48 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-12 13:25:44 +0100
commited9da8e82108cddfe644c0b262aa3d4c8d434304 (patch)
treee69ee4403b63e21b456aaa5c7fb49b5d1883d6c8 /cpukit/score/cpu/powerpc/ppc-isr-vector-install.c
parentor1k: Remove use of proc_ptr (diff)
downloadrtems-ed9da8e82108cddfe644c0b262aa3d4c8d434304.tar.bz2
powerpc: Remove use of proc_ptr
Update #3585.
Diffstat (limited to '')
-rw-r--r--cpukit/score/cpu/powerpc/ppc-isr-vector-install.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/cpukit/score/cpu/powerpc/ppc-isr-vector-install.c b/cpukit/score/cpu/powerpc/ppc-isr-vector-install.c
deleted file mode 100644
index c42c2e2c51..0000000000
--- a/cpukit/score/cpu/powerpc/ppc-isr-vector-install.c
+++ /dev/null
@@ -1,35 +0,0 @@
-/**
- * @file
- *
- * @brief Install Interrupt Handler Vector
- */
-
-/*
- * Copyright (c) 2012 embedded brains GmbH. All rights reserved.
- *
- * embedded brains GmbH
- * Obere Lagerstr. 30
- * 82178 Puchheim
- * Germany
- * <rtems@embedded-brains.de>
- *
- * 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.
- */
-
-#ifdef HAVE_CONFIG_H
- #include "config.h"
-#endif
-
-#include <rtems/score/cpu.h>
-#include <rtems/score/interr.h>
-
-void _CPU_ISR_install_vector(
- uint32_t vector,
- proc_ptr new_handler,
- proc_ptr *old_handler
-)
-{
- _Internal_error( INTERNAL_ERROR_CPU_ISR_INSTALL_VECTOR );
-}