]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
clk: lmk04832: make read-only const arrays static
authorColin Ian King <colin.i.king@gmail.com>
Thu, 12 Sep 2024 13:47:07 +0000 (14:47 +0100)
committerStephen Boyd <sboyd@kernel.org>
Mon, 13 Jan 2025 21:27:12 +0000 (13:27 -0800)
Don't populate the read-only const arrays pll2_p and dclk_div_adj
on the stack at run time, instead make them static.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20240912134707.590224-1-colin.i.king@gmail.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
drivers/clk/clk-lmk04832.c

index c997e74919961be36f8ad523f5a04c37ac5f347e..2bcf422f0b04e6789993849b1d80123872978418 100644 (file)
@@ -375,7 +375,7 @@ static unsigned long lmk04832_vco_recalc_rate(struct clk_hw *hw,
                                              unsigned long prate)
 {
        struct lmk04832 *lmk = container_of(hw, struct lmk04832, vco);
-       const unsigned int pll2_p[] = {8, 2, 2, 3, 4, 5, 6, 7};
+       static const unsigned int pll2_p[] = {8, 2, 2, 3, 4, 5, 6, 7};
        unsigned int pll2_n, p, pll2_r;
        unsigned int pll2_misc;
        unsigned long vco_rate;
@@ -637,7 +637,7 @@ static int lmk04832_register_vco(struct lmk04832 *lmk)
 
 static int lmk04832_clkout_set_ddly(struct lmk04832 *lmk, int id)
 {
-       const int dclk_div_adj[] = {0, 0, -2, -2, 0, 3, -1, 0};
+       static const int dclk_div_adj[] = {0, 0, -2, -2, 0, 3, -1, 0};
        unsigned int sclkx_y_ddly = 10;
        unsigned int dclkx_y_ddly;
        unsigned int dclkx_y_div;