Rename libpsa to libpsats
Instead of using a generic name for the library, give it a TS specific
name to avoid possible naming collisions with other psa libraries in
the future.
Change-Id: Icea9be4d836f7d22300b20c8d6a5f8bd8fae1133
Signed-off-by: Gabor Toth <gabor.toth2@arm.com>
diff --git a/deployments/psa-api-test/crypto/crypto.c b/deployments/psa-api-test/crypto/crypto.c
index 9cbc67b..612012d 100644
--- a/deployments/psa-api-test/crypto/crypto.c
+++ b/deployments/psa-api-test/crypto/crypto.c
@@ -5,7 +5,7 @@
*/
#include "../psa_api_test_common.h"
-#include "libpsa.h"
+#include "libpsats.h"
#include "trace.h"
psa_status_t test_setup(const char *service_name_crypto, const char *service_name_iat,
@@ -16,9 +16,9 @@
if (!service_name_crypto)
service_name_crypto = "sn:trustedfirmware.org:crypto:0";
- psa_status = libpsa_init_crypto_context(service_name_crypto);
+ psa_status = libpsats_init_crypto_context(service_name_crypto);
if (psa_status) {
- EMSG("libpsa_init_crypto_context failed: %d\n", psa_status);
+ EMSG("libpsats_init_crypto_context failed: %d\n", psa_status);
return psa_status;
}
@@ -33,5 +33,5 @@
void test_teardown(void)
{
- libpsa_deinit_crypto_context();
+ libpsats_deinit_crypto_context();
}