From 301329be528f2b5f3a3acdae6fd857fc0011cd77 Mon Sep 17 00:00:00 2001 From: Alessandro Angelino Date: Fri, 2 Oct 2015 12:15:54 +0100 Subject: [PATCH] Add spaces around identifiers in secure gateway Reproduces @bremoran 's PR https://github.com/ARMmbed/uvisor-lib/pull/12 --- core/mbed/uvisor-lib/secure_gateway.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/mbed/uvisor-lib/secure_gateway.h b/core/mbed/uvisor-lib/secure_gateway.h index 6b042eef..e975eb3f 100644 --- a/core/mbed/uvisor-lib/secure_gateway.h +++ b/core/mbed/uvisor-lib/secure_gateway.h @@ -26,9 +26,9 @@ #define __UVISOR_SECURE_GATEWAY_METADATA(dst_box, dst_fn) \ "b.n skip_args%=\n" \ - ".word "UVISOR_TO_STRING(UVISOR_SVC_GW_MAGIC)"\n" \ - ".word "UVISOR_TO_STRING(dst_fn)"\n" \ - ".word "UVISOR_TO_STRING(dst_box)"_cfg_ptr\n" \ + ".word " UVISOR_TO_STRING(UVISOR_SVC_GW_MAGIC) "\n" \ + ".word " UVISOR_TO_STRING(dst_fn) "\n" \ + ".word " UVISOR_TO_STRING(dst_box) "_cfg_ptr\n" \ "skip_args%=:\n" #endif /* __CC_ARM or __GNUC__ */