From: Sean Anderson Date: Fri, 9 Apr 2021 02:13:07 +0000 (-0400) Subject: clk: k210: Move the clint clock to under aclk X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=800c7f6a1fadd6f954e5bac1515cda2231a78464;p=u-boot.git clk: k210: Move the clint clock to under aclk No other (real) clocks have the cpu clock as their parent; instead they are children of aclk. Move the clint clock under aclk to match them. Signed-off-by: Sean Anderson --- diff --git a/drivers/clk/kendryte/clk.c b/drivers/clk/kendryte/clk.c index ab86533bb4..5091f07eb0 100644 --- a/drivers/clk/kendryte/clk.c +++ b/drivers/clk/kendryte/clk.c @@ -643,7 +643,7 @@ static int k210_clk_probe(struct udevice *dev) /* The MTIME register in CLINT runs at one 50th the CPU clock speed */ clk_dm(K210_CLK_CLINT, - clk_register_fixed_factor(NULL, "clint", "cpu", 0, 1, 50)); + clk_register_fixed_factor(NULL, "clint", "aclk", 0, 1, 50)); return 0; }