summaryrefslogtreecommitdiffstats
path: root/drivers/clk/clk-clps711x.c
diff options
context:
space:
mode:
authorJonathan Neuschäfer <j.neuschaefer@gmx.net>2022-02-18 01:09:20 +0100
committerStephen Boyd <sboyd@kernel.org>2022-03-11 18:13:24 -0800
commit8bed4ed5aa3431085d9d27afc35d684856460eda (patch)
tree6ca36964b67ea5419a84fdd25dc1a10edf3731d7 /drivers/clk/clk-clps711x.c
parent113b261bdf2b4fd34e7769a147a7acd0a4d9137f (diff)
downloadlinux-8bed4ed5aa3431085d9d27afc35d684856460eda.tar.bz2
clk: clps711x: Terminate clk_div_table with sentinel element
In order that the end of a clk_div_table can be detected, it must be terminated with a sentinel element (.div = 0). Fixes: 631c53478973d ("clk: Add CLPS711X clk driver") Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net> Link: https://lore.kernel.org/r/20220218000922.134857-5-j.neuschaefer@gmx.net Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/clk-clps711x.c')
-rw-r--r--drivers/clk/clk-clps711x.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/clk/clk-clps711x.c b/drivers/clk/clk-clps711x.c
index a2c6486ef170..f8417ee2961a 100644
--- a/drivers/clk/clk-clps711x.c
+++ b/drivers/clk/clk-clps711x.c
@@ -28,11 +28,13 @@ static const struct clk_div_table spi_div_table[] = {
{ .val = 1, .div = 8, },
{ .val = 2, .div = 2, },
{ .val = 3, .div = 1, },
+ { /* sentinel */ }
};
static const struct clk_div_table timer_div_table[] = {
{ .val = 0, .div = 256, },
{ .val = 1, .div = 1, },
+ { /* sentinel */ }
};
struct clps711x_clk {