mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 19:49:33 -04:00
sun/niu: add __maybe_unused attribute to PM functions
The upgraded .suspend() and .resume() throw
"defined but not used [-Wunused-function]" warning for certain
configurations.
Mark them with "__maybe_unused" attribute.
Compile-tested only.
Fixes: b0db0cc2f6 ("sun/niu: use generic power management")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Vaibhav Gupta <vaibhavgupta40@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
c8658e5841
commit
86fc3f7074
@@ -9873,7 +9873,7 @@ static void niu_pci_remove_one(struct pci_dev *pdev)
|
||||
}
|
||||
}
|
||||
|
||||
static int niu_suspend(struct device *dev_d)
|
||||
static int __maybe_unused niu_suspend(struct device *dev_d)
|
||||
{
|
||||
struct net_device *dev = dev_get_drvdata(dev_d);
|
||||
struct niu *np = netdev_priv(dev);
|
||||
@@ -9900,7 +9900,7 @@ static int niu_suspend(struct device *dev_d)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int niu_resume(struct device *dev_d)
|
||||
static int __maybe_unused niu_resume(struct device *dev_d)
|
||||
{
|
||||
struct net_device *dev = dev_get_drvdata(dev_d);
|
||||
struct niu *np = netdev_priv(dev);
|
||||
|
||||
Reference in New Issue
Block a user