aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include
diff options
context:
space:
mode:
authorAndrew Cooper <andrew.cooper3@citrix.com>2013-08-26 20:18:33 +0100
committerIan Campbell <ian.campbell@citrix.com>2013-08-27 14:26:31 +0100
commit604ab14cde7aef3bcdd7bc3bc398e7d1705dc631 (patch)
treefbcc759b980e209c8a4d255c46471a00a306ef62 /xen/include
parent1c413bf7f2ff372e00d2d78a8904a0ade2420f0a (diff)
downloadxen-604ab14cde7aef3bcdd7bc3bc398e7d1705dc631.tar.gz
xen-604ab14cde7aef3bcdd7bc3bc398e7d1705dc631.tar.bz2
xen-604ab14cde7aef3bcdd7bc3bc398e7d1705dc631.zip
xen/arm: Introduce and use GLOBAL() in asm code.
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com> Acked-by: Ian Campbell <ian.campbell@citrix.com>
Diffstat (limited to 'xen/include')
-rw-r--r--xen/include/asm-arm/config.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/xen/include/asm-arm/config.h b/xen/include/asm-arm/config.h
index 259d4c6103..604088e06b 100644
--- a/xen/include/asm-arm/config.h
+++ b/xen/include/asm-arm/config.h
@@ -63,6 +63,9 @@
.globl name; \
ALIGN; \
name:
+#define GLOBAL(name) \
+ .globl name; \
+ name:
#define END(name) \
.size name, .-name
#define ENDPROC(name) \