Skip to content

Commit

Permalink
tg3: remove redundant pm init code
Browse files Browse the repository at this point in the history
Pci_enable_device() will set device pm state to D0, so
it's no need to do it again in tg3_init_one().

Acked-by: Michael Chan <mchan@broadcom.com>
Signed-off-by: Yijing Wang <wangyijing@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Yijing Wang authored and David S. Miller committed Jun 3, 2013
1 parent 6b1ea4b commit 5865fc1
Showing 1 changed file with 3 additions and 21 deletions.
24 changes: 3 additions & 21 deletions drivers/net/ethernet/broadcom/tg3.c
Original file line number Diff line number Diff line change
Expand Up @@ -17195,7 +17195,7 @@ static int tg3_init_one(struct pci_dev *pdev,
{
struct net_device *dev;
struct tg3 *tp;
int i, err, pm_cap;
int i, err;
u32 sndmbx, rcvmbx, intmbx;
char str[40];
u64 dma_mask, persist_dma_mask;
Expand All @@ -17217,33 +17217,18 @@ static int tg3_init_one(struct pci_dev *pdev,

pci_set_master(pdev);

/* Find power-management capability. */
pm_cap = pci_find_capability(pdev, PCI_CAP_ID_PM);
if (pm_cap == 0) {
dev_err(&pdev->dev,
"Cannot find Power Management capability, aborting\n");
err = -EIO;
goto err_out_free_res;
}

err = pci_set_power_state(pdev, PCI_D0);
if (err) {
dev_err(&pdev->dev, "Transition to D0 failed, aborting\n");
goto err_out_free_res;
}

dev = alloc_etherdev_mq(sizeof(*tp), TG3_IRQ_MAX_VECS);
if (!dev) {
err = -ENOMEM;
goto err_out_power_down;
goto err_out_free_res;
}

SET_NETDEV_DEV(dev, &pdev->dev);

tp = netdev_priv(dev);
tp->pdev = pdev;
tp->dev = dev;
tp->pm_cap = pm_cap;
tp->pm_cap = pdev->pm_cap;
tp->rx_mode = TG3_DEF_RX_MODE;
tp->tx_mode = TG3_DEF_TX_MODE;
tp->irq_sync = 1;
Expand Down Expand Up @@ -17581,9 +17566,6 @@ static int tg3_init_one(struct pci_dev *pdev,
err_out_free_dev:
free_netdev(dev);

err_out_power_down:
pci_set_power_state(pdev, PCI_D3hot);

err_out_free_res:
pci_release_regions(pdev);

Expand Down

0 comments on commit 5865fc1

Please sign in to comment.