From: Marek Vasut Date: Tue, 30 May 2023 22:51:18 +0000 (+0200) Subject: net: eth-phy: staticize eth_phy_reset() X-Git-Tag: v2025.01-rc5-pxa1908~950^2~19^2~15 X-Git-Url: http://git.dujemihanovic.xyz/img/static/%7B%7B?a=commitdiff_plain;h=06173ef643c0c17124154598f9ffeea0c62eb627;p=u-boot.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;