[PATCH v11 3/4] LoongArch: time: add of_clk_init in time_init

From: Yinbo Zhu
Date: Tue Feb 21 2023 - 03:26:37 EST


The Loongson-2 clock controller driver used CLK_OF_DECLARE to
register clock subsystem that ask of_clk_init was called in
time_init and this patch was to addd such support.

Signed-off-by: Yinbo Zhu <zhuyinbo@xxxxxxxxxxx>
Acked-by: Stephen Boyd <sboyd@xxxxxxxxxx>
---
Change in v11:
1. Add acked-by on this patch.

arch/loongarch/kernel/time.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/arch/loongarch/kernel/time.c b/arch/loongarch/kernel/time.c
index a6576dea590c..7d1f3b64928b 100644
--- a/arch/loongarch/kernel/time.c
+++ b/arch/loongarch/kernel/time.c
@@ -12,6 +12,7 @@
#include <linux/kernel.h>
#include <linux/sched_clock.h>
#include <linux/spinlock.h>
+#include <linux/of_clk.h>

#include <asm/cpu-features.h>
#include <asm/loongarch.h>
@@ -219,6 +220,8 @@ int __init constant_clocksource_init(void)

void __init time_init(void)
{
+ of_clk_init(NULL);
+
if (!cpu_has_cpucfg)
const_clock_freq = cpu_clock_freq;
else
--
2.31.1