2013-06-18 08:07:14

by Yijing Wang

[permalink] [raw]
Subject: [PATCH 1/9] Bnx2x: remove redundant D0 power state set

Pci_enable_device() will set device power state to D0,
so it's no need to do it again in bnx2x_init_dev().
Also remove redundant PM Cap find code, because pci core
has been saved the pci device pm cap value.

Signed-off-by: Yijing Wang <[email protected]>
Cc: Eilon Greenstein <[email protected]>
Cc: [email protected]
Cc: [email protected]
---
drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
index b4c9dea..6ecd497 100644
--- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
+++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
@@ -11959,7 +11959,7 @@ static int bnx2x_init_dev(struct bnx2x *bp, struct pci_dev *pdev,
}

if (IS_PF(bp)) {
- bp->pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
+ bp->pm_cap = pdev->pm_cap;
if (bp->pm_cap == 0) {
dev_err(&bp->pdev->dev,
"Cannot find power management capability, aborting\n");
@@ -12008,8 +12008,6 @@ static int bnx2x_init_dev(struct bnx2x *bp, struct pci_dev *pdev,
}
BNX2X_DEV_INFO("me reg PF num: %d\n", bp->pf_num);

- bnx2x_set_power_state(bp, PCI_D0);
-
/* clean indirect addresses */
pci_write_config_dword(bp->pdev, PCICFG_GRC_ADDRESS,
PCICFG_VENDOR_ID_OFFSET);
--
1.7.1


2013-06-18 09:37:36

by Yuval Mintz

[permalink] [raw]
Subject: RE: [PATCH 1/9] Bnx2x: remove redundant D0 power state set

> Pci_enable_device() will set device power state to D0,
> so it's no need to do it again in bnx2x_init_dev().
> Also remove redundant PM Cap find code, because pci core
> has been saved the pci device pm cap value.
>
> Signed-off-by: Yijing Wang <[email protected]>
> Cc: Eilon Greenstein <[email protected]>
> Cc: [email protected]
> Cc: [email protected]
> ---
[...]

Acked-by: Yuval Mintz <[email protected]>

Thanks,
Yuval

2013-06-20 05:23:28

by David Miller

[permalink] [raw]
Subject: Re: [PATCH 1/9] Bnx2x: remove redundant D0 power state set

From: "Yuval Mintz" <[email protected]>
Date: Tue, 18 Jun 2013 09:37:27 +0000

>> Pci_enable_device() will set device power state to D0,
>> so it's no need to do it again in bnx2x_init_dev().
>> Also remove redundant PM Cap find code, because pci core
>> has been saved the pci device pm cap value.
>>
>> Signed-off-by: Yijing Wang <[email protected]>
>> Cc: Eilon Greenstein <[email protected]>
>> Cc: [email protected]
>> Cc: [email protected]
>> ---
> [...]
>
> Acked-by: Yuval Mintz <[email protected]>

Applied.

2013-06-20 05:24:14

by David Miller

[permalink] [raw]
Subject: Re: [PATCH 1/9] Bnx2x: remove redundant D0 power state set

From: Yijing Wang <[email protected]>
Date: Tue, 18 Jun 2013 16:05:39 +0800

> Pci_enable_device() will set device power state to D0,
> so it's no need to do it again in bnx2x_init_dev().
> Also remove redundant PM Cap find code, because pci core
> has been saved the pci device pm cap value.
>
> Signed-off-by: Yijing Wang <[email protected]>

Applied.