Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2b5e6809 authored by Jonathan Neuschäfer's avatar Jonathan Neuschäfer Committed by Greg Kroah-Hartman
Browse files

clk: clps711x: Terminate clk_div_table with sentinel element



[ Upstream commit 8bed4ed5aa3431085d9d27afc35d684856460eda ]

In order that the end of a clk_div_table can be detected, it must be
terminated with a sentinel element (.div = 0).

Fixes: 631c5347 ("clk: Add CLPS711X clk driver")
Signed-off-by: default avatarJonathan Neuschäfer <j.neuschaefer@gmx.net>
Link: https://lore.kernel.org/r/20220218000922.134857-5-j.neuschaefer@gmx.net


Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 166c0185
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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 {