mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-03-16 12:14:06 +00:00
firmware: smccc: Export both smccc functions
We need to export both arm_smccc_1_1_get_conduit and arm_smccc_get_version to allow several modules make use of them. Arm FFA, Arm SCMI and PTP drivers are few drivers that are planning to use these functions. Let us export them in preparation to add support for SCMI as module. Link: https://lore.kernel.org/r/20200907195046.56615-2-sudeep.holla@arm.com Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
This commit is contained in:
parent
6ed6c55823
commit
6825f17c95
1 changed files with 2 additions and 0 deletions
|
@ -24,8 +24,10 @@ enum arm_smccc_conduit arm_smccc_1_1_get_conduit(void)
|
|||
|
||||
return smccc_conduit;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(arm_smccc_1_1_get_conduit);
|
||||
|
||||
u32 arm_smccc_get_version(void)
|
||||
{
|
||||
return smccc_version;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(arm_smccc_get_version);
|
||||
|
|
Loading…
Add table
Reference in a new issue