Commit 65e01ae3 authored by weiyongjun (A)'s avatar weiyongjun (A) Committed by Stephen Boyd

clk: meson-axg: make local symbol axg_gp0_params_table static

Fixes the following sparse warning:

drivers/clk/meson/axg.c:260:25: warning:
 symbol 'axg_gp0_params_table' was not declared. Should it be static?
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent 4f8f7809
...@@ -257,7 +257,7 @@ static const struct pll_rate_table axg_gp0_pll_rate_table[] = { ...@@ -257,7 +257,7 @@ static const struct pll_rate_table axg_gp0_pll_rate_table[] = {
{ /* sentinel */ }, { /* sentinel */ },
}; };
struct pll_params_table axg_gp0_params_table[] = { static struct pll_params_table axg_gp0_params_table[] = {
PLL_PARAM(HHI_GP0_PLL_CNTL, 0x40010250), PLL_PARAM(HHI_GP0_PLL_CNTL, 0x40010250),
PLL_PARAM(HHI_GP0_PLL_CNTL1, 0xc084a000), PLL_PARAM(HHI_GP0_PLL_CNTL1, 0xc084a000),
PLL_PARAM(HHI_GP0_PLL_CNTL2, 0xb75020be), PLL_PARAM(HHI_GP0_PLL_CNTL2, 0xb75020be),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment