diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2016-08-23 15:06:05 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-08-23 17:17:48 -0700 |
commit | 2698f85e88244e1bce5c019e166e5c33aff2b6e5 (patch) | |
tree | f6f430fd061be321c218abb422fc94ea80dbbe94 /drivers | |
parent | 9a4d7e86acf3be8c0c911a552f903a10d0eea814 (diff) | |
download | linux-2698f85e88244e1bce5c019e166e5c33aff2b6e5.tar.bz2 |
net: phy: xgmiitorgmii: Fix non static symbol warning
Fixes the following sparse warning:
drivers/net/phy/xilinx_gmii2rgmii.c:61:5: warning:
symbol 'xgmiitorgmii_probe' was not declared. Should it be static?
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/phy/xilinx_gmii2rgmii.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/xilinx_gmii2rgmii.c b/drivers/net/phy/xilinx_gmii2rgmii.c index f38be7094362..d15dd3938ba8 100644 --- a/drivers/net/phy/xilinx_gmii2rgmii.c +++ b/drivers/net/phy/xilinx_gmii2rgmii.c @@ -58,7 +58,7 @@ static int xgmiitorgmii_read_status(struct phy_device *phydev) return 0; } -int xgmiitorgmii_probe(struct mdio_device *mdiodev) +static int xgmiitorgmii_probe(struct mdio_device *mdiodev) { struct device *dev = &mdiodev->dev; struct device_node *np = dev->of_node, *phy_node; |