summaryrefslogtreecommitdiff
path: root/drivers/clk
diff options
context:
space:
mode:
authorTom Rix <trix@redhat.com>2023-02-05 06:01:38 +0300
committerStephen Boyd <sboyd@kernel.org>2023-02-11 00:59:04 +0300
commitf89ea8f9ce9a76af895cada153fde6e39908aac0 (patch)
tree4d6d6733023a82f197016966f4c5e7fe9b80a6df /drivers/clk
parentdede211f23e4b4a4d5d080c9923cc4df1e1fac87 (diff)
downloadlinux-f89ea8f9ce9a76af895cada153fde6e39908aac0.tar.xz
clk: imx: set imx_clk_gpr_mux_ops storage-class-specifier to static
smatch reports drivers/clk/imx/clk-gpr-mux.c:73:22: warning: symbol 'imx_clk_gpr_mux_ops' was not declared. Should it be static? imx_clk_gpr_mux_ops is only used in clk-gpr-mux.c, so it should be static. Signed-off-by: Tom Rix <trix@redhat.com> Link: https://lore.kernel.org/r/20230205030138.1723614-1-trix@redhat.com Fixes: ee394f636ad3 ("clk: imx: add clk-gpr-mux driver") Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r--drivers/clk/imx/clk-gpr-mux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/imx/clk-gpr-mux.c b/drivers/clk/imx/clk-gpr-mux.c
index 47a3e3cdcc82..c8d6090f15d6 100644
--- a/drivers/clk/imx/clk-gpr-mux.c
+++ b/drivers/clk/imx/clk-gpr-mux.c
@@ -70,7 +70,7 @@ static int imx_clk_gpr_mux_determine_rate(struct clk_hw *hw,
return clk_mux_determine_rate_flags(hw, req, 0);
}
-const struct clk_ops imx_clk_gpr_mux_ops = {
+static const struct clk_ops imx_clk_gpr_mux_ops = {
.get_parent = imx_clk_gpr_mux_get_parent,
.set_parent = imx_clk_gpr_mux_set_parent,
.determine_rate = imx_clk_gpr_mux_determine_rate,