[PATCH 11/20] net: phy: fixed: Make driver ops static
Bin Meng
bmeng.cn at gmail.com
Tue Mar 2 16:34:42 CET 2021
The PHY driver ops should be made static.
Signed-off-by: Bin Meng <bmeng.cn at gmail.com>
---
drivers/net/phy/fixed.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/net/phy/fixed.c b/drivers/net/phy/fixed.c
index 1a38c29469..2a41baf8d7 100644
--- a/drivers/net/phy/fixed.c
+++ b/drivers/net/phy/fixed.c
@@ -15,7 +15,7 @@
DECLARE_GLOBAL_DATA_PTR;
-int fixedphy_probe(struct phy_device *phydev)
+static int fixedphy_probe(struct phy_device *phydev)
{
struct fixed_link *priv;
int ofnode = phydev->addr;
@@ -48,7 +48,7 @@ int fixedphy_probe(struct phy_device *phydev)
return 0;
}
-int fixedphy_startup(struct phy_device *phydev)
+static int fixedphy_startup(struct phy_device *phydev)
{
struct fixed_link *priv = phydev->priv;
@@ -61,7 +61,7 @@ int fixedphy_startup(struct phy_device *phydev)
return 0;
}
-int fixedphy_shutdown(struct phy_device *phydev)
+static int fixedphy_shutdown(struct phy_device *phydev)
{
return 0;
}
--
2.25.1
More information about the U-Boot
mailing list