mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 15:40:56 +07:00
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: Krzysztof Kozlowski <k.kozlowski@samsung.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
This commit is contained in:
parent
6b8f9eabec
commit
f3db6f16bd
@ -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",
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user