Skip to content

Commit 6825f17

Browse files
committed
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>
1 parent 6ed6c55 commit 6825f17

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

drivers/firmware/smccc/smccc.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,10 @@ enum arm_smccc_conduit arm_smccc_1_1_get_conduit(void)
2424

2525
return smccc_conduit;
2626
}
27+
EXPORT_SYMBOL_GPL(arm_smccc_1_1_get_conduit);
2728

2829
u32 arm_smccc_get_version(void)
2930
{
3031
return smccc_version;
3132
}
33+
EXPORT_SYMBOL_GPL(arm_smccc_get_version);

0 commit comments

Comments
 (0)