app: Add missing ifdef around include statement
The include is only needed when CLIENT_IDENTIFICATION is enabled.
Signed-off-by: Øyvind Rønningstad <oyvind.ronningstad@nordicsemi.no>
Change-Id: I00e8eb359d2fd96ff8e221d321f4d8390890efc4
diff --git a/app/psa_api_test.c b/app/psa_api_test.c
index 3a6cc53..54f47b9 100644
--- a/app/psa_api_test.c
+++ b/app/psa_api_test.c
@@ -6,7 +6,9 @@
*/
#include "psa_api_test.h"
+#ifdef TFM_NS_CLIENT_IDENTIFICATION
#include "tfm_nspm_api.h"
+#endif /* TFM_NS_CLIENT_IDENTIFICATION */
#include "tfm_integ_test.h"
/**