diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2014-07-12 14:24:01 +0100 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2014-07-28 17:06:35 +0200 |
commit | b726d22da9aed61462e36aa722fa4e6fd0aec9f1 (patch) | |
tree | 5afdbffd4569a0ea68f4c090ca6031d4ddc838f9 /arch/arm/lib | |
parent | 64fd44dcae0daafb011f98d4b2d4e1f28036b99e (diff) | |
download | u-boot-imx-b726d22da9aed61462e36aa722fa4e6fd0aec9f1.zip u-boot-imx-b726d22da9aed61462e36aa722fa4e6fd0aec9f1.tar.gz u-boot-imx-b726d22da9aed61462e36aa722fa4e6fd0aec9f1.tar.bz2 |
ARM: add missing HYP mode constant
In order to be able to use the various mode constants (far more
readable than random hex values), add the missing HYP and A
values.
Also update arm/lib/interrupts.c to display HYP instead of an
unknown value.
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
Diffstat (limited to 'arch/arm/lib')
-rw-r--r-- | arch/arm/lib/interrupts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/lib/interrupts.c b/arch/arm/lib/interrupts.c index 758b013..f6b7c03 100644 --- a/arch/arm/lib/interrupts.c +++ b/arch/arm/lib/interrupts.c @@ -103,7 +103,7 @@ void show_regs (struct pt_regs *regs) "UK12_26", "UK13_26", "UK14_26", "UK15_26", "USER_32", "FIQ_32", "IRQ_32", "SVC_32", "UK4_32", "UK5_32", "UK6_32", "ABT_32", - "UK8_32", "UK9_32", "UK10_32", "UND_32", + "UK8_32", "UK9_32", "HYP_32", "UND_32", "UK12_32", "UK13_32", "UK14_32", "SYS_32", }; |