diff options
author | Colin Ian King <colin.i.king@googlemail.com> | 2021-11-27 18:30:36 +0100 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2021-12-10 02:15:15 +0100 |
commit | 9259228037cb614ac31a18557fee62976f873a49 (patch) | |
tree | e5caade25c12107f0b276f0c59e1dcc09d0c2a16 /drivers/clk/ti | |
parent | Linux 5.16-rc1 (diff) | |
download | linux-9259228037cb614ac31a18557fee62976f873a49.tar.xz linux-9259228037cb614ac31a18557fee62976f873a49.zip |
clk/ti/adpll: Make const pointer error a static const array
Make const pointer error a static const array, removes a dereference
and shrinks object code a little.
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20211127173036.150535-1-colin.i.king@gmail.com
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/ti')
-rw-r--r-- | drivers/clk/ti/adpll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/ti/adpll.c b/drivers/clk/ti/adpll.c index b341cd990be7..962502ca7ff0 100644 --- a/drivers/clk/ti/adpll.c +++ b/drivers/clk/ti/adpll.c @@ -807,7 +807,7 @@ static int ti_adpll_init_registers(struct ti_adpll_data *d) static int ti_adpll_init_inputs(struct ti_adpll_data *d) { - const char *error = "need at least %i inputs"; + static const char error[] = "need at least %i inputs"; struct clk *clock; int nr_inputs; |