All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] firmware: smccc: Export both soc_id functions
@ 2023-08-30 13:23 ` Martin Botka
  0 siblings, 0 replies; 10+ messages in thread
From: Martin Botka @ 2023-08-30 13:23 UTC (permalink / raw)
  To: Mark Rutland, Lorenzo Pieralisi, Sudeep Holla
  Cc: linux-arm-kernel, linux-kernel, Andre Przywara, Alan Ma,
	Luke Harrison, Marijn Suijten, AngeloGioacchino Del Regno,
	Konrad Dybcio, Martin Botka, Martin Botka

arm_smccc_get_soc_id_version and arm_smccc_get_soc_id_revision
need to be exported so they can be used by modules.
Currently sun50i cpu freq driver is planning to use these functions.

Signed-off-by: Martin Botka <martin.botka@somainline.org>
---
 drivers/firmware/smccc/smccc.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/firmware/smccc/smccc.c b/drivers/firmware/smccc/smccc.c
index db818f9dcb8e..b4224da46988 100644
--- a/drivers/firmware/smccc/smccc.c
+++ b/drivers/firmware/smccc/smccc.c
@@ -64,11 +64,13 @@ s32 arm_smccc_get_soc_id_version(void)
 {
 	return smccc_soc_id_version;
 }
+EXPORT_SYMBOL_GPL(arm_smccc_get_soc_id_version);
 
 s32 arm_smccc_get_soc_id_revision(void)
 {
 	return smccc_soc_id_revision;
 }
+EXPORT_SYMBOL_GPL(arm_smccc_get_soc_id_revision);
 
 static int __init smccc_devices_init(void)
 {

---
base-commit: 706a741595047797872e669b3101429ab8d378ef
change-id: 20230830-smccc_export-aa68d8a25539

Best regards,
-- 
Martin Botka <martin.botka@somainline.org>


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2023-08-30 19:31 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-30 13:23 [PATCH] firmware: smccc: Export both soc_id functions Martin Botka
2023-08-30 13:23 ` Martin Botka
2023-08-30 14:00 ` Marc Zyngier
2023-08-30 14:00   ` Marc Zyngier
     [not found] ` <CAPKp9ubXJbLQ_jOt3sp7Y8KXKyp42bzjHqbaa19LSqGMxE2yPg@mail.gmail.com>
2023-08-30 14:19   ` Martin Botka
2023-08-30 14:19     ` Martin Botka
2023-08-30 15:43     ` Sudeep Holla
2023-08-30 15:43       ` Sudeep Holla
2023-08-30 15:45       ` Martin Botka
2023-08-30 15:45         ` Martin Botka

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.