Fix: Remove whitespace after '#pragma message'
The 'message' is a function name and compiler prohibits
the whitespace between function name and '('.
Signed-off-by: Jianliang Shen <jianliang.shen@arm.com>
Change-Id: I669e1640a98649409bae4c778be5bdf9d7ecf303
diff --git a/secure_fw/spm/include/config_spm.h b/secure_fw/spm/include/config_spm.h
index 728301f..69dbb27 100644
--- a/secure_fw/spm/include/config_spm.h
+++ b/secure_fw/spm/include/config_spm.h
@@ -13,19 +13,19 @@
/* The maximal number of secure services that are connected or requested at the same time */
#ifndef CONFIG_TFM_CONN_HANDLE_MAX_NUM
-#pragma message ("CONFIG_TFM_CONN_HANDLE_MAX_NUM is defaulted to 8. Please check and set it explicitly.")
+#pragma message("CONFIG_TFM_CONN_HANDLE_MAX_NUM is defaulted to 8. Please check and set it explicitly.")
#define CONFIG_TFM_CONN_HANDLE_MAX_NUM 8
#endif
/* Enable the doorbell APIs */
#ifndef CONFIG_TFM_DOORBELL_API
-#pragma message ("CONFIG_TFM_DOORBELL_API is defaulted to 1. Please check and set it explicitly.")
+#pragma message("CONFIG_TFM_DOORBELL_API is defaulted to 1. Please check and set it explicitly.")
#define CONFIG_TFM_DOORBELL_API 1
#endif
/* Disable doorbell for SFN backend */
#if CONFIG_TFM_SPM_BACKEND_SFN == 1
-#pragma message ("CONFIG_TFM_DOORBELL_API is redefined to 0.")
+#pragma message("CONFIG_TFM_DOORBELL_API is redefined to 0.")
#undef CONFIG_TFM_DOORBELL_API
#define CONFIG_TFM_DOORBELL_API 0
#endif