clk: loongson1: Terminate clk_div_table with sentinel element
authorJonathan Neuschäfer <j.neuschaefer@gmx.net>
Fri, 18 Feb 2022 00:09:18 +0000 (01:09 +0100)
committerStephen 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

index 703f876..1ebf740 100644 (file)
@@ -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)