2014-04-11 08:15:04

by Daniel J Blueman

[permalink] [raw]
Subject: [PATCH] Don't build unused suspend/resume functions not enabled

When CONFIG_PM_SLEEP isn't enabled, bnx2_suspend/resume are unused; don't
build them when they aren't used.

Signed-off-by: Daniel J Blueman <[email protected]>
---
drivers/net/ethernet/broadcom/bnx2.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/broadcom/bnx2.c b/drivers/net/ethernet/broadcom/bnx2.c
index b14c606..617bfe6 100644
--- a/drivers/net/ethernet/broadcom/bnx2.c
+++ b/drivers/net/ethernet/broadcom/bnx2.c
@@ -8578,6 +8578,7 @@ bnx2_remove_one(struct pci_dev *pdev)
pci_disable_device(pdev);
}

+#ifdef CONFIG_PM_SLEEP
static int
bnx2_suspend(struct device *device)
{
@@ -8616,7 +8617,6 @@ bnx2_resume(struct device *device)
return 0;
}

-#ifdef CONFIG_PM_SLEEP
static SIMPLE_DEV_PM_OPS(bnx2_pm_ops, bnx2_suspend, bnx2_resume);
#define BNX2_PM_OPS (&bnx2_pm_ops)

--
1.8.3.2


2014-04-11 20:50:10

by David Miller

[permalink] [raw]
Subject: Re: [PATCH] Don't build unused suspend/resume functions not enabled

From: Daniel J Blueman <[email protected]>
Date: Fri, 11 Apr 2014 16:14:26 +0800

> When CONFIG_PM_SLEEP isn't enabled, bnx2_suspend/resume are unused; don't
> build them when they aren't used.
>
> Signed-off-by: Daniel J Blueman <[email protected]>

Applied, thank you.