net: phy: Make iproc_mdio_resume static
Fix sparse warnings: drivers/net/phy/mdio-bcm-iproc.c:182:5: warning: symbol 'iproc_mdio_resume' was not declared. Should it be static? Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Zheng Zengkai <zhengzengkai@huawei.com> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
3793faad7b
commit
31e2d067fd
|
@ -179,7 +179,7 @@ static int iproc_mdio_remove(struct platform_device *pdev)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_PM_SLEEP
|
#ifdef CONFIG_PM_SLEEP
|
||||||
int iproc_mdio_resume(struct device *dev)
|
static int iproc_mdio_resume(struct device *dev)
|
||||||
{
|
{
|
||||||
struct platform_device *pdev = to_platform_device(dev);
|
struct platform_device *pdev = to_platform_device(dev);
|
||||||
struct iproc_mdio_priv *priv = platform_get_drvdata(pdev);
|
struct iproc_mdio_priv *priv = platform_get_drvdata(pdev);
|
||||||
|
|
Loading…
Reference in New Issue