diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2022-02-05 11:36:12 +0100 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2022-02-25 16:41:39 -0800 |
commit | eac03cb010a9f5df37550b6082a6a8ba5e8b84dc (patch) | |
tree | 568d4580071aa8621a1008fe41b75af8e84ec57f | |
parent | 8a8e164b1de0edaf94afd27a74b2e06ef1117060 (diff) | |
download | linux-eac03cb010a9f5df37550b6082a6a8ba5e8b84dc.tar.bz2 |
clk: qcom: Declare mux table as const u32[]
Now that clk_register_mux_table takes a const u32 *, we can declare the
mux tables as const u32[].
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Link: https://lore.kernel.org/r/20220205103613.1216218-7-j.neuschaefer@gmx.net
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
-rw-r--r-- | drivers/clk/qcom/kpss-xcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/qcom/kpss-xcc.c b/drivers/clk/qcom/kpss-xcc.c index 4fec1f9142b8..88d4b33ac0cc 100644 --- a/drivers/clk/qcom/kpss-xcc.c +++ b/drivers/clk/qcom/kpss-xcc.c @@ -17,7 +17,7 @@ static const char *aux_parents[] = { "pxo", }; -static unsigned int aux_parent_map[] = { +static const u32 aux_parent_map[] = { 3, 0, }; |