Commit 7a0f795e authored by Saurabh Gorecha's avatar Saurabh Gorecha
Browse files

plat:qti Mandate SMC implementaion



renamed smcc api with correct name  plat_is_smccc_feature_available

Change-Id: I277ece02bffc2caa065256576c1a047dfcde1c92
Signed-off-by: default avatarSaurabh Gorecha <sgorecha@codeaurora.org>
parent e2c509a3
...@@ -176,14 +176,14 @@ int32_t plat_get_soc_revision(void) ...@@ -176,14 +176,14 @@ int32_t plat_get_soc_revision(void)
} }
/***************************************************************************** /*****************************************************************************
* plat_smccc_feature_available() - This function checks whether SMCCC feature * plat_is_smccc_feature_available() - This function checks whether SMCCC feature
* is availabile for the platform or not. * is availabile for the platform or not.
* @fid: SMCCC function id * @fid: SMCCC function id
* *
* Return SMC_ARCH_CALL_SUCCESS if SMCCC feature is available and * Return SMC_ARCH_CALL_SUCCESS if SMCCC feature is available and
* SMC_ARCH_CALL_NOT_SUPPORTED otherwise. * SMC_ARCH_CALL_NOT_SUPPORTED otherwise.
*****************************************************************************/ *****************************************************************************/
int32_t plat_smccc_feature_available(u_register_t fid) int32_t plat_is_smccc_feature_available(u_register_t fid)
{ {
switch (fid) { switch (fid) {
case SMCCC_ARCH_SOC_ID: case SMCCC_ARCH_SOC_ID:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment