On 10/17/23 12:56, Igor Prusov wrote:
After introducing dump to clk_ops there is no need to override or expose
this symbol anymore.

Signed-off-by: Igor Prusov <ivpru...@sberdevices.ru>
Reviewed-by: Patrice Chotard <patrice.chot...@foss.st.com>
Tested-by: Patrice Chotard <patrice.chot...@foss.st.com>
---
  cmd/clk.c     | 4 ++--
  include/clk.h | 2 --
  2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/cmd/clk.c b/cmd/clk.c
index 90cc6fa906..f55911db7a 100644
--- a/cmd/clk.c
+++ b/cmd/clk.c
@@ -59,7 +59,7 @@ static void show_clks(struct udevice *dev, int depth, int 
last_flag)
        }
  }
-int __weak soc_clk_dump(void)
+static int soc_clk_dump(void)
  {
        struct udevice *dev;
        const struct clk_ops *ops;
@@ -81,7 +81,7 @@ int __weak soc_clk_dump(void)
        return 0;
  }
  #else
-int __weak soc_clk_dump(void)
+static int soc_clk_dump(void)
  {
        puts("Not implemented\n");
        return 1;
diff --git a/include/clk.h b/include/clk.h
index d91285235f..bf0d9c9d7f 100644
--- a/include/clk.h
+++ b/include/clk.h
@@ -674,8 +674,6 @@ static inline bool clk_valid(struct clk *clk)
        return clk && !!clk->dev;
  }
-int soc_clk_dump(void);
-
  #endif
#define clk_prepare_enable(clk) clk_enable(clk)

Reviewed-by: Sean Anderson <sean...@gmail.com>

Reply via email to