projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
36bec00
)
xen: arm: print arm64 not arm32 in xen info when appropriate.
author
Ian Campbell
<ian.campbell@citrix.com>
Fri, 22 Feb 2013 08:58:23 +0000
(08:58 +0000)
committer
Ian Campbell
<ian.campbell@citrix.com>
Fri, 22 Feb 2013 12:14:55 +0000
(12:14 +0000)
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Tim Deegan <tim@xen.org>
xen/arch/arm/traps.c
patch
|
blob
|
history
diff --git
a/xen/arch/arm/traps.c
b/xen/arch/arm/traps.c
index 836762e50e050c4269dd7297f273014543ecc430..600113c03bb181246cd52c389836bcd6ccc16e32 100644
(file)
--- a/
xen/arch/arm/traps.c
+++ b/
xen/arch/arm/traps.c
@@
-63,8
+63,13
@@
static void print_xen_info(void)
{
char taint_str[TAINT_STRING_MAX_LEN];
- printk("----[ Xen-%d.%d%s
arm32
debug=%c %s ]----\n",
+ printk("----[ Xen-%d.%d%s
%s
debug=%c %s ]----\n",
xen_major_version(), xen_minor_version(), xen_extra_version(),
+#ifdef CONFIG_ARM_32
+ "arm32",
+#else
+ "arm64",
+#endif
debug_build() ? 'y' : 'n', print_tainted(taint_str));
}