From: Marek Vasut Date: Tue, 30 May 2023 22:51:18 +0000 (+0200) Subject: net: eth-phy: staticize eth_phy_reset() X-Git-Tag: baikal/mips/sdk6.2~4^2~3^2~102^2~19^2~15 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=997624d5c92c4cd6d786a0bbcde1921e9796ab80;p=uboot.git net: eth-phy: staticize eth_phy_reset() The eth_phy_reset() is not used outside of this file, staticize it. No functional change. Signed-off-by: Marek Vasut Reviewed-by: Ramon Fried --- diff --git a/drivers/net/eth-phy-uclass.c b/drivers/net/eth-phy-uclass.c index 27b77444a0..231bad6651 100644 --- a/drivers/net/eth-phy-uclass.c +++ b/drivers/net/eth-phy-uclass.c @@ -147,7 +147,7 @@ static int eth_phy_of_to_plat(struct udevice *dev) return 0; } -void eth_phy_reset(struct udevice *dev, int value) +static void eth_phy_reset(struct udevice *dev, int value) { struct eth_phy_device_priv *uc_priv = dev_get_uclass_priv(dev); u32 delay;