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>
This commit is contained in:
Jonathan Neuschäfer 2022-02-05 11:36:12 +01:00 committed by Stephen Boyd
parent 8a8e164b1d
commit eac03cb010

View file

@ -17,7 +17,7 @@ static const char *aux_parents[] = {
"pxo",
};
static unsigned int aux_parent_map[] = {
static const u32 aux_parent_map[] = {
3,
0,
};