summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/exceptions.S
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2011-11-27 16:32:05 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2011-11-28 11:41:33 +0100
commit38884dabbe6a86feb5d9763cd160083f85b1848b (patch)
tree9c1e43114c0189e0e050fd0e78faa04803dcc7f0 /arch/arm/cpu/exceptions.S
parent55ebf18c6603dd8d93c4a6a9d57ca390c9028c37 (diff)
downloadbarebox-38884dabbe6a86feb5d9763cd160083f85b1848b.tar.gz
barebox-38884dabbe6a86feb5d9763cd160083f85b1848b.tar.xz
remove irq support fragments
We never had interrupt support in barebox and we have no plans to add interrupt support. Even if we do I doubt the current fragments of irq support are helpful, so remove them. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/cpu/exceptions.S')
-rw-r--r--arch/arm/cpu/exceptions.S21
1 files changed, 0 insertions, 21 deletions
diff --git a/arch/arm/cpu/exceptions.S b/arch/arm/cpu/exceptions.S
index a87975529e..6f35d408f4 100644
--- a/arch/arm/cpu/exceptions.S
+++ b/arch/arm/cpu/exceptions.S
@@ -140,25 +140,6 @@ data_abort:
.globl irq
.globl fiq
-#ifdef CONFIG_USE_IRQ
-
- .align 5
-irq:
- get_irq_stack
- irq_save_user_regs
- bl do_irq
- irq_restore_user_regs
-
- .align 5
-fiq:
- get_fiq_stack
- /* someone ought to write a more effiction fiq_save_user_regs */
- irq_save_user_regs
- bl do_fiq
- irq_restore_user_regs
-
-#else
-
.align 5
irq:
get_bad_stack
@@ -171,5 +152,3 @@ fiq:
bad_save_user_regs
bl do_fiq
-#endif
-