summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/sparc/cpu.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-06 19:34:15 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-11-08 08:09:25 +0100
commit4fea054ca575418a4190f0b7876c206382ccfd05 (patch)
tree8d7fcd38cfc4828dbf75bf5d446dd81ac92cc4c3 /cpukit/score/cpu/sparc/cpu.c
parentscore: Rename interrupt stack symbols (diff)
downloadrtems-4fea054ca575418a4190f0b7876c206382ccfd05.tar.bz2
score: Remove _ISR_Dispatch()
This function was only used on some m68k variants. On these m68k variants there is no need to use a global symbol. Use a local label instead. Remove _ISR_Dispatch() from the architecture-independent layer.
Diffstat (limited to '')
-rw-r--r--cpukit/score/cpu/sparc/cpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/cpu/sparc/cpu.c b/cpukit/score/cpu/sparc/cpu.c
index cb94b14c71..78ce269afb 100644
--- a/cpukit/score/cpu/sparc/cpu.c
+++ b/cpukit/score/cpu/sparc/cpu.c
@@ -412,9 +412,9 @@ void _CPU_Context_Initialize(
/*
* Since THIS thread is being created, there is no way that THIS
- * thread can have an _ISR_Dispatch stack frame on its stack.
+ * thread can have an interrupt stack frame on its stack.
*/
- the_context->isr_dispatch_disable = 0;
+ the_context->isr_dispatch_disable = 0;
if ( tls_area != NULL ) {
void *tcb = _TLS_TCB_after_TLS_block_initialize( tls_area );