summaryrefslogtreecommitdiffstats
path: root/sys/arm
diff options
context:
space:
mode:
authorian <ian@FreeBSD.org>2014-03-10 01:34:38 +0000
committerian <ian@FreeBSD.org>2014-03-10 01:34:38 +0000
commitdbbf661942642f1a5ddfea1105c3e87a8c703387 (patch)
treedc97b00a11504bdab9ddaa918e7a7f729a642e24 /sys/arm
parent5ad2ce4e5b478b4c41f16dd5cb93e3d80f42bc90 (diff)
downloadFreeBSD-src-dbbf661942642f1a5ddfea1105c3e87a8c703387.zip
FreeBSD-src-dbbf661942642f1a5ddfea1105c3e87a8c703387.tar.gz
Make the default exception handler vectors point to where I thought they
were already pointing: the default handlers (not a panic that says there is no default handler).
Diffstat (limited to 'sys/arm')
-rw-r--r--sys/arm/arm/exception.S20
1 files changed, 2 insertions, 18 deletions
diff --git a/sys/arm/arm/exception.S b/sys/arm/arm/exception.S
index d7ef5f2..be95a92 100644
--- a/sys/arm/arm/exception.S
+++ b/sys/arm/arm/exception.S
@@ -115,16 +115,8 @@ Lprefetch_abort_handler_address:
.global _C_LABEL(prefetch_abort_handler_address)
_C_LABEL(prefetch_abort_handler_address):
- .word abortprefetch
+ .word prefetch_abort_handler
- .text
-abortprefetch:
- adr r0, abortprefetchmsg
- b _C_LABEL(panic)
-
-abortprefetchmsg:
- .asciz "abortprefetch"
- .align 0
END(prefetch_abort_entry)
/*
@@ -151,16 +143,8 @@ Ldata_abort_handler_address:
.data
.global _C_LABEL(data_abort_handler_address)
_C_LABEL(data_abort_handler_address):
- .word abortdata
-
- .text
-abortdata:
- adr r0, abortdatamsg
- b _C_LABEL(panic)
+ .word data_abort_handler
-abortdatamsg:
- .asciz "abortdata"
- .align 0
END(data_abort_entry)
/*
OpenPOWER on IntegriCloud