svn commit: r262966 - head/sys/arm/arm
Ian Lepore
ian at FreeBSD.org
Mon Mar 10 01:34:38 UTC 2014
Author: ian
Date: Mon Mar 10 01:34:38 2014
New Revision: 262966
URL: http://svnweb.freebsd.org/changeset/base/262966
Log:
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).
Modified:
head/sys/arm/arm/exception.S
Modified: head/sys/arm/arm/exception.S
==============================================================================
--- head/sys/arm/arm/exception.S Mon Mar 10 00:53:37 2014 (r262965)
+++ head/sys/arm/arm/exception.S Mon Mar 10 01:34:38 2014 (r262966)
@@ -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
+ .word data_abort_handler
- .text
-abortdata:
- adr r0, abortdatamsg
- b _C_LABEL(panic)
-
-abortdatamsg:
- .asciz "abortdata"
- .align 0
END(data_abort_entry)
/*
More information about the svn-src-all
mailing list