projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d8a441e
)
clk: loongson1: Terminate clk_div_table with sentinel element
author
Jonathan Neuschäfer
<j.neuschaefer@gmx.net>
Fri, 18 Feb 2022 00:09:18 +0000
(
01:09
+0100)
committer
Stephen Boyd
<sboyd@kernel.org>
Sat, 12 Mar 2022 02:13:24 +0000
(18:13 -0800)
In order that the end of a clk_div_table can be detected, it must be
terminated with a sentinel element (.div = 0).
Fixes:
b4626a7f4892
("CLK: Add Loongson1C clock support")
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Link:
https://lore.kernel.org/r/20220218000922.134857-3-j.neuschaefer@gmx.net
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
drivers/clk/loongson1/clk-loongson1c.c
patch
|
blob
|
history
diff --git
a/drivers/clk/loongson1/clk-loongson1c.c
b/drivers/clk/loongson1/clk-loongson1c.c
index
703f876
..
1ebf740
100644
(file)
--- a/
drivers/clk/loongson1/clk-loongson1c.c
+++ b/
drivers/clk/loongson1/clk-loongson1c.c
@@
-37,6
+37,7
@@
static const struct clk_div_table ahb_div_table[] = {
[1] = { .val = 1, .div = 4 },
[2] = { .val = 2, .div = 3 },
[3] = { .val = 3, .div = 3 },
+ [4] = { /* sentinel */ }
};
void __init ls1x_clk_init(void)