Commit eac03cb0 authored by Jonathan Neuschäfer's avatar Jonathan Neuschäfer Committed by Stephen Boyd
Browse files

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: default avatarJonathan Neuschäfer <j.neuschaefer@gmx.net>
Link: https://lore.kernel.org/r/20220205103613.1216218-7-j.neuschaefer@gmx.net


Signed-off-by: default avatarStephen Boyd <sboyd@kernel.org>
parent 8a8e164b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ static const char *aux_parents[] = {
	"pxo",
};

static unsigned int aux_parent_map[] = {
static const u32 aux_parent_map[] = {
	3,
	0,
};