1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

rtl8366_smi: make rtl8366_phy_config_{aneg,init} static

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19249 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg
2010-01-20 20:36:27 +00:00
parent a51fdf9d02
commit 4cff025384

View File

@@ -1894,7 +1894,7 @@ static int __init rtl8366_smi_probe(struct platform_device *pdev)
return err; return err;
} }
int rtl8366_phy_config_init(struct phy_device *phydev) static int rtl8366_phy_config_init(struct phy_device *phydev)
{ {
if (!rtl8366_smi_mii_bus_match(phydev->bus)) if (!rtl8366_smi_mii_bus_match(phydev->bus))
return -EINVAL; return -EINVAL;
@@ -1902,7 +1902,7 @@ int rtl8366_phy_config_init(struct phy_device *phydev)
return 0; return 0;
} }
int rtl8366_phy_config_aneg(struct phy_device *phydev) static int rtl8366_phy_config_aneg(struct phy_device *phydev)
{ {
return 0; return 0;
} }