Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/arm/arm Deal with __ARM_FIQ_INDIRECT
details: https://anonhg.NetBSD.org/src/rev/cf582dc70477
branches: trunk
changeset: 787357:cf582dc70477
user: matt <matt%NetBSD.org@localhost>
date: Wed Jun 12 15:10:13 2013 +0000
description:
Deal with __ARM_FIQ_INDIRECT
diffstat:
sys/arch/arm/arm/vectors.S | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diffs (21 lines):
diff -r 0ff2367129da -r cf582dc70477 sys/arch/arm/arm/vectors.S
--- a/sys/arch/arm/arm/vectors.S Wed Jun 12 12:14:35 2013 +0000
+++ b/sys/arch/arm/arm/vectors.S Wed Jun 12 15:10:13 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vectors.S,v 1.5 2013/06/12 07:17:23 matt Exp $ */
+/* $NetBSD: vectors.S,v 1.6 2013/06/12 15:10:13 matt Exp $ */
/*
* Copyright (C) 1994-1997 Mark Brinicombe
@@ -65,7 +65,11 @@
b data_abort_entry
b address_exception_entry
b irq_entry
+#ifdef __ARM_FIQ_INDIRECT
b _C_LABEL(fiqvector)
+#else
+ b .Lfiqvector
+#endif
#endif
_C_LABEL(page0):
Home |
Main Index |
Thread Index |
Old Index