diff options
| author | Felipe Balbi <[email protected]> | 2015-05-08 11:30:49 -0500 |
|---|---|---|
| committer | Kishon Vijay Abraham I <[email protected]> | 2015-05-11 21:42:26 +0530 |
| commit | 5bea496820cdcb0f6711741ba663ccfe78ac4dbf (patch) | |
| tree | 49b04212e8738c8e420577db48b96ba42d139ed7 | |
| parent | 99db11c6e8a89b236b283df0ec592aecdd00d8ef (diff) | |
phy: miphy365x: fix sparse warnings
Add missing 'static' modifier so sparse
won't complain anymore.
Signed-off-by: Felipe Balbi <[email protected]>
Acked-by: Maxime Coquelin <[email protected]>
Signed-off-by: Kishon Vijay Abraham I <[email protected]>
| -rw-r--r-- | drivers/phy/phy-miphy365x.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/phy/phy-miphy365x.c b/drivers/phy/phy-miphy365x.c index 019c2d75344e..ba6993da91fe 100644 --- a/drivers/phy/phy-miphy365x.c +++ b/drivers/phy/phy-miphy365x.c @@ -441,8 +441,8 @@ static int miphy365x_init(struct phy *phy) return ret; } -int miphy365x_get_addr(struct device *dev, struct miphy365x_phy *miphy_phy, - int index) +static int miphy365x_get_addr(struct device *dev, + struct miphy365x_phy *miphy_phy, int index) { struct device_node *phynode = miphy_phy->phy->dev.of_node; const char *name; |