diff options
author | Madhukar Pappireddy <madhukar.pappireddy@arm.com> | 2020-11-20 15:36:37 +0000 |
---|---|---|
committer | TrustedFirmware Code Review <review@review.trustedfirmware.org> | 2020-11-20 15:36:37 +0000 |
commit | 7cf307d20972d92996cc42cc7695f0ccf91e767c (patch) | |
tree | d045f6132795ba5f2c7f9a70a3ad2e19dfc5c608 | |
parent | a68626070eafc7dc501d7b239facf978b5177959 (diff) | |
parent | 840fa94aa3a5d3e90a3546ab030304053213d473 (diff) | |
download | platform_external_arm-trusted-firmware-7cf307d20972d92996cc42cc7695f0ccf91e767c.tar.gz platform_external_arm-trusted-firmware-7cf307d20972d92996cc42cc7695f0ccf91e767c.tar.bz2 platform_external_arm-trusted-firmware-7cf307d20972d92996cc42cc7695f0ccf91e767c.zip |
Merge "plat/nvidia: tegra: Rename SMC API" into integration
-rw-r--r-- | plat/nvidia/tegra/common/tegra_platform.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plat/nvidia/tegra/common/tegra_platform.c b/plat/nvidia/tegra/common/tegra_platform.c index 7c73e8fe1..d45d9886f 100644 --- a/plat/nvidia/tegra/common/tegra_platform.c +++ b/plat/nvidia/tegra/common/tegra_platform.c @@ -297,14 +297,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. * @fid: SMCCC function id * * Return SMC_ARCH_CALL_SUCCESS if SMCCC feature is available and * 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) { case SMCCC_ARCH_SOC_ID: |