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/platform/ext/target/arm/corstone1000/config_tfm_target.h b/platform/ext/target/arm/corstone1000/config_tfm_target.h
index 196b978..c89fd89 100644
--- a/platform/ext/target/arm/corstone1000/config_tfm_target.h
+++ b/platform/ext/target/arm/corstone1000/config_tfm_target.h
@@ -10,14 +10,14 @@
/* Use stored NV seed to provide entropy */
#if CRYPTO_NV_SEED
-#pragma message ("CRYPTO_NV_SEED is redefined to 0.")
+#pragma message("CRYPTO_NV_SEED is redefined to 0.")
#undef CRYPTO_NV_SEED
#endif
#define CRYPTO_NV_SEED 0
/* Size of output buffer in platform service. */
#if PLATFORM_SERVICE_OUTPUT_BUFFER_SIZE != 256
-#pragma message ("PLATFORM_SERVICE_OUTPUT_BUFFER_SIZE is redefined to 256.")
+#pragma message("PLATFORM_SERVICE_OUTPUT_BUFFER_SIZE is redefined to 256.")
#undef PLATFORM_SERVICE_OUTPUT_BUFFER_SIZE
#endif
#define PLATFORM_SERVICE_OUTPUT_BUFFER_SIZE 256
diff --git a/platform/ext/target/arm/musca_b1/config_tfm_target.h b/platform/ext/target/arm/musca_b1/config_tfm_target.h
index 7be4051..88b75bc 100644
--- a/platform/ext/target/arm/musca_b1/config_tfm_target.h
+++ b/platform/ext/target/arm/musca_b1/config_tfm_target.h
@@ -10,7 +10,7 @@
/* Use stored NV seed to provide entropy */
#if CRYPTO_NV_SEED
-#pragma message ("CRYPTO_NV_SEED is redefined to 0.")
+#pragma message("CRYPTO_NV_SEED is redefined to 0.")
#undef CRYPTO_NV_SEED
#endif
#define CRYPTO_NV_SEED 0
diff --git a/platform/ext/target/arm/musca_s1/config_tfm_target.h b/platform/ext/target/arm/musca_s1/config_tfm_target.h
index 7be4051..88b75bc 100644
--- a/platform/ext/target/arm/musca_s1/config_tfm_target.h
+++ b/platform/ext/target/arm/musca_s1/config_tfm_target.h
@@ -10,7 +10,7 @@
/* Use stored NV seed to provide entropy */
#if CRYPTO_NV_SEED
-#pragma message ("CRYPTO_NV_SEED is redefined to 0.")
+#pragma message("CRYPTO_NV_SEED is redefined to 0.")
#undef CRYPTO_NV_SEED
#endif
#define CRYPTO_NV_SEED 0
diff --git a/platform/ext/target/arm/rss/tc/config_tfm_target.h b/platform/ext/target/arm/rss/tc/config_tfm_target.h
index c715400..8473546 100644
--- a/platform/ext/target/arm/rss/tc/config_tfm_target.h
+++ b/platform/ext/target/arm/rss/tc/config_tfm_target.h
@@ -10,21 +10,21 @@
/* Use stored NV seed to provide entropy */
#if CRYPTO_NV_SEED
-#pragma message ("CRYPTO_NV_SEED is redefined to 0.")
+#pragma message("CRYPTO_NV_SEED is redefined to 0.")
#undef CRYPTO_NV_SEED
#endif
#define CRYPTO_NV_SEED 0
/* Set the initial attestation token profile */
#if ATTEST_TOKEN_PROFILE_PSA_IOT_1
-#pragma message ("ATTEST_TOKEN_PROFILE is redefined to ATTEST_TOKEN_PROFILE_ARM_CCA.")
+#pragma message("ATTEST_TOKEN_PROFILE is redefined to ATTEST_TOKEN_PROFILE_ARM_CCA.")
#undef ATTEST_TOKEN_PROFILE_PSA_IOT_1
#elif ATTEST_TOKEN_PROFILE_PSA_2_0_0
-#pragma message ("ATTEST_TOKEN_PROFILE is redefined to ATTEST_TOKEN_PROFILE_ARM_CCA.")
+#pragma message("ATTEST_TOKEN_PROFILE is redefined to ATTEST_TOKEN_PROFILE_ARM_CCA.")
#undef ATTEST_TOKEN_PROFILE_PSA_2_0_0
#endif
#if !ATTEST_TOKEN_PROFILE_ARM_CCA
-#pragma message ("ATTEST_TOKEN_PROFILE_ARM_CCA is chosen on RSS by default. Please check and set it explicitly.")
+#pragma message("ATTEST_TOKEN_PROFILE_ARM_CCA is chosen on RSS by default. Please check and set it explicitly.")
#undef ATTEST_TOKEN_PROFILE_ARM_CCA
#define ATTEST_TOKEN_PROFILE_ARM_CCA 1
#endif
diff --git a/platform/ext/target/lairdconnectivity/common/bl5340/config_tfm_target.h b/platform/ext/target/lairdconnectivity/common/bl5340/config_tfm_target.h
index fa556f2..56dd727 100644
--- a/platform/ext/target/lairdconnectivity/common/bl5340/config_tfm_target.h
+++ b/platform/ext/target/lairdconnectivity/common/bl5340/config_tfm_target.h
@@ -10,7 +10,7 @@
/* Size of output buffer in platform service. */
#if ITS_NUM_ASSETS != 5
-#pragma message ("ITS_NUM_ASSETS is redefined to 5.")
+#pragma message("ITS_NUM_ASSETS is redefined to 5.")
#undef ITS_NUM_ASSETS
#endif
#define ITS_NUM_ASSETS 5
diff --git a/platform/ext/target/nordic_nrf/nrf5340dk_nrf5340_cpuapp/config_tfm_target.h b/platform/ext/target/nordic_nrf/nrf5340dk_nrf5340_cpuapp/config_tfm_target.h
index c565f74..018dbf3 100644
--- a/platform/ext/target/nordic_nrf/nrf5340dk_nrf5340_cpuapp/config_tfm_target.h
+++ b/platform/ext/target/nordic_nrf/nrf5340dk_nrf5340_cpuapp/config_tfm_target.h
@@ -10,14 +10,14 @@
/* Include optional claims in initial attestation token */
#if ATTEST_INCLUDE_OPTIONAL_CLAIMS
-#pragma message ("ATTEST_INCLUDE_OPTIONAL_CLAIMS is redefined to 0.")
+#pragma message("ATTEST_INCLUDE_OPTIONAL_CLAIMS is redefined to 0.")
#undef ATTEST_INCLUDE_OPTIONAL_CLAIMS
#endif
#define ATTEST_INCLUDE_OPTIONAL_CLAIMS 0
/* Use stored NV seed to provide entropy */
#if CRYPTO_NV_SEED
-#pragma message ("CRYPTO_NV_SEED is redefined to 0.")
+#pragma message("CRYPTO_NV_SEED is redefined to 0.")
#undef CRYPTO_NV_SEED
#endif
#define CRYPTO_NV_SEED 0
diff --git a/platform/ext/target/nordic_nrf/nrf9160dk_nrf9160/config_tfm_target.h b/platform/ext/target/nordic_nrf/nrf9160dk_nrf9160/config_tfm_target.h
index c565f74..018dbf3 100644
--- a/platform/ext/target/nordic_nrf/nrf9160dk_nrf9160/config_tfm_target.h
+++ b/platform/ext/target/nordic_nrf/nrf9160dk_nrf9160/config_tfm_target.h
@@ -10,14 +10,14 @@
/* Include optional claims in initial attestation token */
#if ATTEST_INCLUDE_OPTIONAL_CLAIMS
-#pragma message ("ATTEST_INCLUDE_OPTIONAL_CLAIMS is redefined to 0.")
+#pragma message("ATTEST_INCLUDE_OPTIONAL_CLAIMS is redefined to 0.")
#undef ATTEST_INCLUDE_OPTIONAL_CLAIMS
#endif
#define ATTEST_INCLUDE_OPTIONAL_CLAIMS 0
/* Use stored NV seed to provide entropy */
#if CRYPTO_NV_SEED
-#pragma message ("CRYPTO_NV_SEED is redefined to 0.")
+#pragma message("CRYPTO_NV_SEED is redefined to 0.")
#undef CRYPTO_NV_SEED
#endif
#define CRYPTO_NV_SEED 0
diff --git a/platform/ext/target/nuvoton/m2351/config_tfm_target.h b/platform/ext/target/nuvoton/m2351/config_tfm_target.h
index b28dd08..ce6fca3 100644
--- a/platform/ext/target/nuvoton/m2351/config_tfm_target.h
+++ b/platform/ext/target/nuvoton/m2351/config_tfm_target.h
@@ -10,21 +10,21 @@
/* Size of output buffer in platform service. */
#if ITS_NUM_ASSETS != 12
-#pragma message ("ITS_NUM_ASSETS is redefined to 12.")
+#pragma message("ITS_NUM_ASSETS is redefined to 12.")
#undef ITS_NUM_ASSETS
#endif
#define ITS_NUM_ASSETS 12
/* The maximum asset size to be stored in the Protected Storage area. */
#if PS_MAX_ASSET_SIZE != 512
-#pragma message ("PS_MAX_ASSET_SIZE is redefined to 512.")
+#pragma message("PS_MAX_ASSET_SIZE is redefined to 512.")
#undef PS_MAX_ASSET_SIZE
#endif
#define PS_MAX_ASSET_SIZE 512
/* The maximum number of assets to be stored in the Protected Storage area. */
#if PS_NUM_ASSETS != 12
-#pragma message ("PS_NUM_ASSETS is redefined to 12.")
+#pragma message("PS_NUM_ASSETS is redefined to 12.")
#undef PS_NUM_ASSETS
#endif
#define PS_NUM_ASSETS 12
diff --git a/platform/ext/target/nuvoton/m2354/config_tfm_target.h b/platform/ext/target/nuvoton/m2354/config_tfm_target.h
index b28dd08..ce6fca3 100644
--- a/platform/ext/target/nuvoton/m2354/config_tfm_target.h
+++ b/platform/ext/target/nuvoton/m2354/config_tfm_target.h
@@ -10,21 +10,21 @@
/* Size of output buffer in platform service. */
#if ITS_NUM_ASSETS != 12
-#pragma message ("ITS_NUM_ASSETS is redefined to 12.")
+#pragma message("ITS_NUM_ASSETS is redefined to 12.")
#undef ITS_NUM_ASSETS
#endif
#define ITS_NUM_ASSETS 12
/* The maximum asset size to be stored in the Protected Storage area. */
#if PS_MAX_ASSET_SIZE != 512
-#pragma message ("PS_MAX_ASSET_SIZE is redefined to 512.")
+#pragma message("PS_MAX_ASSET_SIZE is redefined to 512.")
#undef PS_MAX_ASSET_SIZE
#endif
#define PS_MAX_ASSET_SIZE 512
/* The maximum number of assets to be stored in the Protected Storage area. */
#if PS_NUM_ASSETS != 12
-#pragma message ("PS_NUM_ASSETS is redefined to 12.")
+#pragma message("PS_NUM_ASSETS is redefined to 12.")
#undef PS_NUM_ASSETS
#endif
#define PS_NUM_ASSETS 12
diff --git a/platform/ext/target/nxp/lpcxpresso55s69/config_tfm_target.h b/platform/ext/target/nxp/lpcxpresso55s69/config_tfm_target.h
index 76f3f46..b293f91 100644
--- a/platform/ext/target/nxp/lpcxpresso55s69/config_tfm_target.h
+++ b/platform/ext/target/nxp/lpcxpresso55s69/config_tfm_target.h
@@ -10,14 +10,14 @@
/* The maximum asset size to be stored in the Protected Storage area. */
#if PS_MAX_ASSET_SIZE != 512
-#pragma message ("PS_MAX_ASSET_SIZE is redefined to 512.")
+#pragma message("PS_MAX_ASSET_SIZE is redefined to 512.")
#undef PS_MAX_ASSET_SIZE
#endif
#define PS_MAX_ASSET_SIZE 512
/* The maximum number of assets to be stored in the Protected Storage area. */
#if PS_NUM_ASSETS != 5
-#pragma message ("PS_NUM_ASSETS is redefined to 5.")
+#pragma message("PS_NUM_ASSETS is redefined to 5.")
#undef PS_NUM_ASSETS
#endif
#define PS_NUM_ASSETS 5
diff --git a/platform/ext/target/stm/b_u585i_iot02a/config_tfm_target.h b/platform/ext/target/stm/b_u585i_iot02a/config_tfm_target.h
index 7be4051..88b75bc 100644
--- a/platform/ext/target/stm/b_u585i_iot02a/config_tfm_target.h
+++ b/platform/ext/target/stm/b_u585i_iot02a/config_tfm_target.h
@@ -10,7 +10,7 @@
/* Use stored NV seed to provide entropy */
#if CRYPTO_NV_SEED
-#pragma message ("CRYPTO_NV_SEED is redefined to 0.")
+#pragma message("CRYPTO_NV_SEED is redefined to 0.")
#undef CRYPTO_NV_SEED
#endif
#define CRYPTO_NV_SEED 0
diff --git a/platform/ext/target/stm/nucleo_l552ze_q/config_tfm_target.h b/platform/ext/target/stm/nucleo_l552ze_q/config_tfm_target.h
index 7be4051..88b75bc 100644
--- a/platform/ext/target/stm/nucleo_l552ze_q/config_tfm_target.h
+++ b/platform/ext/target/stm/nucleo_l552ze_q/config_tfm_target.h
@@ -10,7 +10,7 @@
/* Use stored NV seed to provide entropy */
#if CRYPTO_NV_SEED
-#pragma message ("CRYPTO_NV_SEED is redefined to 0.")
+#pragma message("CRYPTO_NV_SEED is redefined to 0.")
#undef CRYPTO_NV_SEED
#endif
#define CRYPTO_NV_SEED 0
diff --git a/platform/ext/target/stm/stm32l562e_dk/config_tfm_target.h b/platform/ext/target/stm/stm32l562e_dk/config_tfm_target.h
index 7be4051..88b75bc 100644
--- a/platform/ext/target/stm/stm32l562e_dk/config_tfm_target.h
+++ b/platform/ext/target/stm/stm32l562e_dk/config_tfm_target.h
@@ -10,7 +10,7 @@
/* Use stored NV seed to provide entropy */
#if CRYPTO_NV_SEED
-#pragma message ("CRYPTO_NV_SEED is redefined to 0.")
+#pragma message("CRYPTO_NV_SEED is redefined to 0.")
#undef CRYPTO_NV_SEED
#endif
#define CRYPTO_NV_SEED 0
diff --git a/secure_fw/partitions/crypto/config_crypto.h b/secure_fw/partitions/crypto/config_crypto.h
index 565fade..6e8342e 100644
--- a/secure_fw/partitions/crypto/config_crypto.h
+++ b/secure_fw/partitions/crypto/config_crypto.h
@@ -15,86 +15,86 @@
* CRYPTO_ENGINE_BUF_SIZE needs to be >8KB for EC signing by attest module.
*/
#ifndef CRYPTO_ENGINE_BUF_SIZE
-#pragma message ("CRYPTO_ENGINE_BUF_SIZE is defaulted to 0x2080. Please check and set it explicitly.")
+#pragma message("CRYPTO_ENGINE_BUF_SIZE is defaulted to 0x2080. Please check and set it explicitly.")
#define CRYPTO_ENGINE_BUF_SIZE 0x2080
#endif
/* The CC312 needs at least 0x4000 of heap size to work properly */
#if defined(CRYPTO_HW_ACCELERATOR_CC312) && (CRYPTO_ENGINE_BUF_SIZE < 0x4000)
-#pragma message ("CRYPTO_ENGINE_BUF_SIZE is redefined to 0x4000.")
+#pragma message("CRYPTO_ENGINE_BUF_SIZE is redefined to 0x4000.")
#undef CRYPTO_ENGINE_BUF_SIZE
#define CRYPTO_ENGINE_BUF_SIZE 0x4000
#endif
/* The max number of concurrent operations that can be active (allocated) at any time in Crypto */
#ifndef CRYPTO_CONC_OPER_NUM
-#pragma message ("CRYPTO_CONC_OPER_NUM is defaulted to 8. Please check and set it explicitly.")
+#pragma message("CRYPTO_CONC_OPER_NUM is defaulted to 8. Please check and set it explicitly.")
#define CRYPTO_CONC_OPER_NUM 8
#endif
/* Disable PSA Crypto random number generator module */
#ifndef CRYPTO_RNG_MODULE_DISABLED
-#pragma message ("CRYPTO_RNG_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
+#pragma message("CRYPTO_RNG_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
#define CRYPTO_RNG_MODULE_DISABLED 0
#endif
/* Disable PSA Crypto Key module */
#ifndef CRYPTO_KEY_MODULE_DISABLED
-#pragma message ("CRYPTO_KEY_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
+#pragma message("CRYPTO_KEY_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
#define CRYPTO_KEY_MODULE_DISABLED 0
#endif
/* Disable PSA Crypto AEAD module */
#ifndef CRYPTO_AEAD_MODULE_DISABLED
-#pragma message ("CRYPTO_AEAD_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
+#pragma message("CRYPTO_AEAD_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
#define CRYPTO_AEAD_MODULE_DISABLED 0
#endif
/* Disable PSA Crypto MAC module */
#ifndef CRYPTO_MAC_MODULE_DISABLED
-#pragma message ("CRYPTO_MAC_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
+#pragma message("CRYPTO_MAC_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
#define CRYPTO_MAC_MODULE_DISABLED 0
#endif
/* Disable PSA Crypto Hash module */
#ifndef CRYPTO_HASH_MODULE_DISABLED
-#pragma message ("CRYPTO_HASH_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
+#pragma message("CRYPTO_HASH_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
#define CRYPTO_HASH_MODULE_DISABLED 0
#endif
/* Disable PSA Crypto Cipher module */
#ifndef CRYPTO_CIPHER_MODULE_DISABLED
-#pragma message ("CRYPTO_CIPHER_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
+#pragma message("CRYPTO_CIPHER_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
#define CRYPTO_CIPHER_MODULE_DISABLED 0
#endif
/* Disable PSA Crypto asymmetric key signature module */
#ifndef CRYPTO_ASYM_SIGN_MODULE_DISABLED
-#pragma message ("CRYPTO_ASYM_SIGN_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
+#pragma message("CRYPTO_ASYM_SIGN_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
#define CRYPTO_ASYM_SIGN_MODULE_DISABLED 0
#endif
/* Disable PSA Crypto asymmetric key encryption module */
#ifndef CRYPTO_ASYM_ENCRYPT_MODULE_DISABLED
-#pragma message ("CRYPTO_ASYM_ENCRYPT_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
+#pragma message("CRYPTO_ASYM_ENCRYPT_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
#define CRYPTO_ASYM_ENCRYPT_MODULE_DISABLED 0
#endif
/* Disable PSA Crypto key derivation module */
#ifndef CRYPTO_KEY_DERIVATION_MODULE_DISABLED
-#pragma message ("CRYPTO_KEY_DERIVATION_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
+#pragma message("CRYPTO_KEY_DERIVATION_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
#define CRYPTO_KEY_DERIVATION_MODULE_DISABLED 0
#endif
/* Default size of the internal scratch buffer used for PSA FF IOVec allocations */
#ifndef CRYPTO_IOVEC_BUFFER_SIZE
-#pragma message ("CRYPTO_IOVEC_BUFFER_SIZE is defaulted to 5120. Please check and set it explicitly.")
+#pragma message("CRYPTO_IOVEC_BUFFER_SIZE is defaulted to 5120. Please check and set it explicitly.")
#define CRYPTO_IOVEC_BUFFER_SIZE 5120
#endif
/* Use stored NV seed to provide entropy */
#ifndef CRYPTO_NV_SEED
-#pragma message ("CRYPTO_NV_SEED is defaulted to 1. Please check and set it explicitly.")
+#pragma message("CRYPTO_NV_SEED is defaulted to 1. Please check and set it explicitly.")
#define CRYPTO_NV_SEED 1
#endif
@@ -103,13 +103,13 @@
* to optimize memory footprint in resource-constrained devices.
*/
#ifndef CRYPTO_SINGLE_PART_FUNCS_DISABLED
-#pragma message ("CRYPTO_SINGLE_PART_FUNCS_DISABLED is defaulted to 0. Please check and set it explicitly.")
+#pragma message("CRYPTO_SINGLE_PART_FUNCS_DISABLED is defaulted to 0. Please check and set it explicitly.")
#define CRYPTO_SINGLE_PART_FUNCS_DISABLED 0
#endif
/* The stack size of the Crypto Secure Partition */
#ifndef CRYPTO_STACK_SIZE
-#pragma message ("CRYPTO_STACK_SIZE is defaulted to 0x1B00. Please check and set it explicitly.")
+#pragma message("CRYPTO_STACK_SIZE is defaulted to 0x1B00. Please check and set it explicitly.")
#define CRYPTO_STACK_SIZE 0x1B00
#endif
diff --git a/secure_fw/partitions/firmware_update/config_fwu.h b/secure_fw/partitions/firmware_update/config_fwu.h
index b168451..7980de4 100644
--- a/secure_fw/partitions/firmware_update/config_fwu.h
+++ b/secure_fw/partitions/firmware_update/config_fwu.h
@@ -12,13 +12,13 @@
/* Size of the FWU internal data transfer buffer */
#ifndef TFM_FWU_BUF_SIZE
-#pragma message ("TFM_FWU_BUF_SIZE is defaulted to PSA_FWU_MAX_WRITE_SIZE. Please check and set it explicitly.")
+#pragma message("TFM_FWU_BUF_SIZE is defaulted to PSA_FWU_MAX_WRITE_SIZE. Please check and set it explicitly.")
#define TFM_FWU_BUF_SIZE PSA_FWU_MAX_WRITE_SIZE
#endif
/* The stack size of the Firmware Update Secure Partition */
#ifndef FWU_STACK_SIZE
-#pragma message ("FWU_STACK_SIZE is defaulted to 0x600. Please check and set it explicitly.")
+#pragma message("FWU_STACK_SIZE is defaulted to 0x600. Please check and set it explicitly.")
#define FWU_STACK_SIZE 0x600
#endif
diff --git a/secure_fw/partitions/initial_attestation/config_attest.h b/secure_fw/partitions/initial_attestation/config_attest.h
index b1b2697..44aa671 100644
--- a/secure_fw/partitions/initial_attestation/config_attest.h
+++ b/secure_fw/partitions/initial_attestation/config_attest.h
@@ -12,19 +12,19 @@
/* Include optional claims in initial attestation token */
#ifndef ATTEST_INCLUDE_OPTIONAL_CLAIMS
-#pragma message ("ATTEST_INCLUDE_OPTIONAL_CLAIMS is defaulted to 1. Please check and set it explicitly.")
+#pragma message("ATTEST_INCLUDE_OPTIONAL_CLAIMS is defaulted to 1. Please check and set it explicitly.")
#define ATTEST_INCLUDE_OPTIONAL_CLAIMS 1
#endif
/* Include COSE key-id in initial attestation token */
#ifndef ATTEST_INCLUDE_COSE_KEY_ID
-#pragma message ("ATTEST_INCLUDE_COSE_KEY_ID is defaulted to 0. Please check and set it explicitly.")
+#pragma message("ATTEST_INCLUDE_COSE_KEY_ID is defaulted to 0. Please check and set it explicitly.")
#define ATTEST_INCLUDE_COSE_KEY_ID 0
#endif
/* The stack size of the Initial Attestation Secure Partition */
#ifndef ATTEST_STACK_SIZE
-#pragma message ("ATTEST_STACK_SIZE is defaulted to 0x700. Please check and set it explicitly.")
+#pragma message("ATTEST_STACK_SIZE is defaulted to 0x700. Please check and set it explicitly.")
#define ATTEST_STACK_SIZE 0x700
#endif
@@ -32,7 +32,7 @@
#if (!ATTEST_TOKEN_PROFILE_PSA_IOT_1) && \
(!ATTEST_TOKEN_PROFILE_PSA_2_0_0) && \
(!ATTEST_TOKEN_PROFILE_ARM_CCA)
-#pragma message ("ATTEST_TOKEN_PROFILE_PSA_IOT_1 is chosen by default. Please check and set it explicitly.")
+#pragma message("ATTEST_TOKEN_PROFILE_PSA_IOT_1 is chosen by default. Please check and set it explicitly.")
#define ATTEST_TOKEN_PROFILE_PSA_IOT_1 1
#endif
diff --git a/secure_fw/partitions/internal_trusted_storage/config_its.h b/secure_fw/partitions/internal_trusted_storage/config_its.h
index e1a4938..eb43500 100644
--- a/secure_fw/partitions/internal_trusted_storage/config_its.h
+++ b/secure_fw/partitions/internal_trusted_storage/config_its.h
@@ -13,32 +13,32 @@
/* Create flash FS if it doesn't exist for Internal Trusted Storage partition */
#ifndef ITS_CREATE_FLASH_LAYOUT
-#pragma message ("ITS_CREATE_FLASH_LAYOUT is defaulted to 1. Please check and set it explicitly.")
+#pragma message("ITS_CREATE_FLASH_LAYOUT is defaulted to 1. Please check and set it explicitly.")
#define ITS_CREATE_FLASH_LAYOUT 1
#endif
/* Enable emulated RAM FS for platforms that don't have flash for Internal Trusted Storage partition */
#ifndef ITS_RAM_FS
-#pragma message ("ITS_RAM_FS is defaulted to 0. Please check and set it explicitly.")
+#pragma message("ITS_RAM_FS is defaulted to 0. Please check and set it explicitly.")
#define ITS_RAM_FS 0
#endif
/* Validate filesystem metadata every time it is read from flash */
#ifndef ITS_VALIDATE_METADATA_FROM_FLASH
-#pragma message ("ITS_VALIDATE_METADATA_FROM_FLASH is defaulted to 1. Please check and set it explicitly.")
+#pragma message("ITS_VALIDATE_METADATA_FROM_FLASH is defaulted to 1. Please check and set it explicitly.")
#define ITS_VALIDATE_METADATA_FROM_FLASH 1
#endif
/* Enable ITS_VALIDATE_METADATA_FROM_FLASH when PS_VALIDATE_METADATA_FROM_FLASH is enabled */
#if (!ITS_VALIDATE_METADATA_FROM_FLASH) && PS_VALIDATE_METADATA_FROM_FLASH
-#pragma message ("ITS_VALIDATE_METADATA_FROM_FLASH is redefined to 1.")
+#pragma message("ITS_VALIDATE_METADATA_FROM_FLASH is redefined to 1.")
#undef ITS_VALIDATE_METADATA_FROM_FLASH
#define ITS_VALIDATE_METADATA_FROM_FLASH 1
#endif
/* The maximum asset size to be stored in the Internal Trusted Storage */
#ifndef ITS_MAX_ASSET_SIZE
-#pragma message ("ITS_MAX_ASSET_SIZE is defaulted to 512. Please check and set it explicitly.")
+#pragma message("ITS_MAX_ASSET_SIZE is defaulted to 512. Please check and set it explicitly.")
#define ITS_MAX_ASSET_SIZE 512
#endif
@@ -47,19 +47,19 @@
* (Default to the max asset size so that all requests can be handled in one iteration.)
*/
#ifndef ITS_BUF_SIZE
-#pragma message ("ITS_BUF_SIZE is defaulted to ITS_MAX_ASSET_SIZE. Please check and set it explicitly.")
+#pragma message("ITS_BUF_SIZE is defaulted to ITS_MAX_ASSET_SIZE. Please check and set it explicitly.")
#define ITS_BUF_SIZE ITS_MAX_ASSET_SIZE
#endif
/* The maximum number of assets to be stored in the Internal Trusted Storage */
#ifndef ITS_NUM_ASSETS
-#pragma message ("ITS_NUM_ASSETS is defaulted to 10. Please check and set it explicitly.")
+#pragma message("ITS_NUM_ASSETS is defaulted to 10. Please check and set it explicitly.")
#define ITS_NUM_ASSETS 10
#endif
/* The stack size of the Internal Trusted Storage Secure Partition */
#ifndef ITS_STACK_SIZE
-#pragma message ("ITS_STACK_SIZE is defaulted to 0x720. Please check and set it explicitly.")
+#pragma message("ITS_STACK_SIZE is defaulted to 0x720. Please check and set it explicitly.")
#define ITS_STACK_SIZE 0x720
#endif
diff --git a/secure_fw/partitions/platform/config_platform.h b/secure_fw/partitions/platform/config_platform.h
index 80220fd..c55d07f 100644
--- a/secure_fw/partitions/platform/config_platform.h
+++ b/secure_fw/partitions/platform/config_platform.h
@@ -12,25 +12,25 @@
/* Size of input buffer in platform service */
#ifndef PLATFORM_SERVICE_INPUT_BUFFER_SIZE
-#pragma message ("PLATFORM_SERVICE_INPUT_BUFFER_SIZE is defaulted to 64. Please check and set it explicitly.")
+#pragma message("PLATFORM_SERVICE_INPUT_BUFFER_SIZE is defaulted to 64. Please check and set it explicitly.")
#define PLATFORM_SERVICE_INPUT_BUFFER_SIZE 64
#endif
/* Size of output buffer in platform service */
#ifndef PLATFORM_SERVICE_OUTPUT_BUFFER_SIZE
-#pragma message ("PLATFORM_SERVICE_OUTPUT_BUFFER_SIZE is defaulted to 64. Please check and set it explicitly.")
+#pragma message("PLATFORM_SERVICE_OUTPUT_BUFFER_SIZE is defaulted to 64. Please check and set it explicitly.")
#define PLATFORM_SERVICE_OUTPUT_BUFFER_SIZE 64
#endif
/* The stack size of the Platform Secure Partition */
#ifndef PLATFORM_SP_STACK_SIZE
-#pragma message ("PLATFORM_SP_STACK_SIZE is defaulted to 0x500. Please check and set it explicitly.")
+#pragma message("PLATFORM_SP_STACK_SIZE is defaulted to 0x500. Please check and set it explicitly.")
#define PLATFORM_SP_STACK_SIZE 0x500
#endif
/* Disable Non-volatile counter module */
#ifndef PLATFORM_NV_COUNTER_MODULE_DISABLED
-#pragma message ("PLATFORM_NV_COUNTER_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
+#pragma message("PLATFORM_NV_COUNTER_MODULE_DISABLED is defaulted to 0. Please check and set it explicitly.")
#define PLATFORM_NV_COUNTER_MODULE_DISABLED 0
#endif
diff --git a/secure_fw/partitions/protected_storage/config_ps.h b/secure_fw/partitions/protected_storage/config_ps.h
index c366309..032507e 100644
--- a/secure_fw/partitions/protected_storage/config_ps.h
+++ b/secure_fw/partitions/protected_storage/config_ps.h
@@ -13,43 +13,43 @@
/* Create flash FS if it doesn't exist for Protected Storage partition */
#ifndef PS_CREATE_FLASH_LAYOUT
-#pragma message ("PS_CREATE_FLASH_LAYOUT is defaulted to 1. Please check and set it explicitly.")
+#pragma message("PS_CREATE_FLASH_LAYOUT is defaulted to 1. Please check and set it explicitly.")
#define PS_CREATE_FLASH_LAYOUT 1
#endif
/* Enable emulated RAM FS for platforms that don't have flash for Protected Storage partition */
#ifndef PS_RAM_FS
-#pragma message ("PS_RAM_FS is defaulted to 0. Please check and set it explicitly.")
+#pragma message("PS_RAM_FS is defaulted to 0. Please check and set it explicitly.")
#define PS_RAM_FS 0
#endif
/* Enable rollback protection for Protected Storage partition */
#ifndef PS_ROLLBACK_PROTECTION
-#pragma message ("PS_ROLLBACK_PROTECTION is defaulted to 1. Please check and set it explicitly.")
+#pragma message("PS_ROLLBACK_PROTECTION is defaulted to 1. Please check and set it explicitly.")
#define PS_ROLLBACK_PROTECTION 1
#endif
/* Validate filesystem metadata every time it is read from flash */
#ifndef PS_VALIDATE_METADATA_FROM_FLASH
-#pragma message ("PS_VALIDATE_METADATA_FROM_FLASH is defaulted to 1. Please check and set it explicitly.")
+#pragma message("PS_VALIDATE_METADATA_FROM_FLASH is defaulted to 1. Please check and set it explicitly.")
#define PS_VALIDATE_METADATA_FROM_FLASH 1
#endif
/* The maximum asset size to be stored in the Protected Storage */
#ifndef PS_MAX_ASSET_SIZE
-#pragma message ("PS_MAX_ASSET_SIZE is defaulted to 2048. Please check and set it explicitly.")
+#pragma message("PS_MAX_ASSET_SIZE is defaulted to 2048. Please check and set it explicitly.")
#define PS_MAX_ASSET_SIZE 2048
#endif
/* The maximum number of assets to be stored in the Protected Storage */
#ifndef PS_NUM_ASSETS
-#pragma message ("PS_NUM_ASSETS is defaulted to 10. Please check and set it explicitly.")
+#pragma message("PS_NUM_ASSETS is defaulted to 10. Please check and set it explicitly.")
#define PS_NUM_ASSETS 10
#endif
/* The stack size of the Protected Storage Secure Partition */
#ifndef PS_STACK_SIZE
-#pragma message ("PS_STACK_SIZE is defaulted to 0x700. Please check and set it explicitly.")
+#pragma message("PS_STACK_SIZE is defaulted to 0x700. Please check and set it explicitly.")
#define PS_STACK_SIZE 0x700
#endif
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