Commit f3db6f16 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by Stephen Boyd
Browse files

clk: cdce706: Constify parent names in clock init data



The array of parent names can be made as array of const pointers to
const strings.

Signed-off-by: default avatarKrzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent 6b8f9eab
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -94,7 +94,7 @@ static const char * const cdce706_source_name[] = {
	"clk_in0", "clk_in1",
};

static const char *cdce706_clkin_name[] = {
static const char * const cdce706_clkin_name[] = {
	"clk_in",
};

@@ -102,7 +102,7 @@ static const char * const cdce706_pll_name[] = {
	"pll1", "pll2", "pll3",
};

static const char *cdce706_divider_parent_name[] = {
static const char * const cdce706_divider_parent_name[] = {
	"clk_in", "pll1", "pll2", "pll2", "pll3",
};