net: atlantic: make symbol 'aq_pm_ops' static
authorzhengbin <zhengbin13@huawei.com>
Tue, 12 Nov 2019 06:59:41 +0000 (14:59 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 12 Nov 2019 18:55:41 +0000 (10:55 -0800)
Fix sparse warnings:

drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c:426:25: warning: symbol 'aq_pm_ops' was not declared. Should it be static?

Reported-by: Hulk Robot <hulkci@huawei.com>
Fixes: 8aaa112a57c1 ("net: atlantic: refactoring pm logic")
Signed-off-by: zhengbin <zhengbin13@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c

index a161026cfbfd61f192efe6926c5f05fc7e62dc0a..2bb329606794b0f19a94bf214ad7c3d143dc5974 100644 (file)
@@ -423,7 +423,7 @@ static int aq_pm_resume_restore(struct device *dev)
        return atl_resume_common(dev, true);
 }
 
-const struct dev_pm_ops aq_pm_ops = {
+static const struct dev_pm_ops aq_pm_ops = {
        .suspend = aq_pm_suspend_poweroff,
        .poweroff = aq_pm_suspend_poweroff,
        .freeze = aq_pm_freeze,