mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
cmd: clk: Make soc_clk_dump static
After introducing dump to clk_ops there is no need to override or expose this symbol anymore. Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com> Tested-by: Patrice Chotard <patrice.chotard@foss.st.com> Reviewed-by: Sean Anderson <seanga2@gmail.com> Signed-off-by: Igor Prusov <ivprusov@sberdevices.ru> Link: https://lore.kernel.org/r/20231109105516.24892-9-ivprusov@sberdevices.ru
This commit is contained in:
parent
bc3e313ff6
commit
5666558a6c
2 changed files with 2 additions and 4 deletions
|
@ -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;
|
struct udevice *dev;
|
||||||
const struct clk_ops *ops;
|
const struct clk_ops *ops;
|
||||||
|
@ -81,7 +81,7 @@ int __weak soc_clk_dump(void)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
int __weak soc_clk_dump(void)
|
static int soc_clk_dump(void)
|
||||||
{
|
{
|
||||||
puts("Not implemented\n");
|
puts("Not implemented\n");
|
||||||
return 1;
|
return 1;
|
||||||
|
|
|
@ -676,8 +676,6 @@ static inline bool clk_valid(struct clk *clk)
|
||||||
return clk && !!clk->dev;
|
return clk && !!clk->dev;
|
||||||
}
|
}
|
||||||
|
|
||||||
int soc_clk_dump(void);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define clk_prepare_enable(clk) clk_enable(clk)
|
#define clk_prepare_enable(clk) clk_enable(clk)
|
||||||
|
|
Loading…
Reference in a new issue