fix(smccc): make feat discovery testcase to use SMC64
Commit a0fa44b48 fixed SMCCC_ARCH_FEAT_AVAILABILITY to use aarch64
value, this patch updates tftf to reflect the change.
Change-Id: I29fa8c5dca21a350dad4895822c87357c1e71a88
Signed-off-by: Arvind Ram Prakash <arvind.ramprakash@arm.com>
diff --git a/tftf/tests/runtime_services/arm_arch_svc/smccc_feature_availability.c b/tftf/tests/runtime_services/arm_arch_svc/smccc_feature_availability.c
index 7c7f91b..c897f87 100644
--- a/tftf/tests/runtime_services/arm_arch_svc/smccc_feature_availability.c
+++ b/tftf/tests/runtime_services/arm_arch_svc/smccc_feature_availability.c
@@ -65,7 +65,8 @@
#ifdef __aarch64__
SKIP_TEST_IF_SMCCC_VERSION_LT(1, 1);
- SKIP_TEST_IF_SMCCC_FUNC_NOT_SUPPORTED(SMCCC_ARCH_FEATURE_AVAILABILITY);
+ SKIP_TEST_IF_SMCCC_FUNC_NOT_SUPPORTED(SMCCC_ARCH_FEATURE_AVAILABILITY |
+ (SMC_64 << FUNCID_CC_SHIFT));
u_register_t reg;
bool bad = false;